diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2008-05-16 20:55:26 +0000 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2010-09-30 07:08:06 +0000 |
commit | ae5602da5b31ac65392afdc51844b8b6cc80abba (patch) | |
tree | 3fb2124d1e5c69deee5a2c88a9305154c221382b /UICaboodle/UICaboodle.h | |
parent | 31f3cfff23e94eafe961217c2baf096875055098 (diff) |
Almost forgot the new _label keyword.
Diffstat (limited to 'UICaboodle/UICaboodle.h')
-rw-r--r-- | UICaboodle/UICaboodle.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/UICaboodle/UICaboodle.h b/UICaboodle/UICaboodle.h index 499fc23..e0b9af8 100644 --- a/UICaboodle/UICaboodle.h +++ b/UICaboodle/UICaboodle.h @@ -22,3 +22,7 @@ while (false) #define _not(type) ((type) ~ (type) 0) #define _transient + +#define _label__(x) _label ## x +#define _label_(y) _label__(y) +#define _label _label_(__LINE__) |