summaryrefslogtreecommitdiff
path: root/UICaboodle
diff options
context:
space:
mode:
authorJay Freeman (saurik) <saurik@saurik.com>2008-05-16 20:55:26 +0000
committerJay Freeman (saurik) <saurik@saurik.com>2010-09-30 07:08:06 +0000
commitae5602da5b31ac65392afdc51844b8b6cc80abba (patch)
tree3fb2124d1e5c69deee5a2c88a9305154c221382b /UICaboodle
parent31f3cfff23e94eafe961217c2baf096875055098 (diff)
Almost forgot the new _label keyword.
Diffstat (limited to 'UICaboodle')
-rw-r--r--UICaboodle/UICaboodle.h4
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__)