Changes between Version 3 and Version 4 of C++ Tricks
- Timestamp:
- Aug 14, 2017, 2:44:23 PM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
C++ Tricks
v3 v4 36 36 #undef NAMES 37 37 }}} 38 Use: 38 39 39 {{{ 40 40 #include <stdio.h> … … 46 46 return 0; 47 47 } 48 49 48 }}} 50 49 Note that hard-coding the prefix makes this much simpler, and is probably appropriate for most applications:
