Details
Details
Diff Detail
Diff Detail
Event Timeline
Comment Actions
You might want to put comments on your "(void)unused_variable;" lines to let people know it is there to make sure that we don't get unused variable warnings so people know not to take them out. It might be a good idea to make a macro that would make this more clear. Maybe something in lldb-defines.h like:
#define UNUSED_IF_ASSERT_DISABLED(x) ((void)(x))
Comment Actions
I saw your comment after I had done the merge and was doing the build + push. I'll revisit this soon with a comprehensive way to address this.