Skip to content
Snippets Groups Projects

Cleanup Unused Macros

Merged Jan Včelák requested to merge cleanup-unused-macros into master
+ 33
16
Compare changes
  • Side-by-side
  • Inline
Files
+ 11
0
//
// Use UNUSED(var) macro instead of casting expression to void.
//
@@
expression E;
@@
(
-(void)E;
+UNUSED(E);
)
Loading