summaryrefslogtreecommitdiffstats
path: root/Source/cmCommandArgumentLexer.h
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2006-09-25 14:05:07 (GMT)
committerBrad King <brad.king@kitware.com>2006-09-25 14:05:07 (GMT)
commit97c97730a6c93b46295284c5a49d285f57a57121 (patch)
tree606736c91364fdd2f3f7adf1214ee6caec5966e1 /Source/cmCommandArgumentLexer.h
parentcba6306b8655d70833d2fd9acd68ce259471b7c8 (diff)
downloadCMake-97c97730a6c93b46295284c5a49d285f57a57121.zip
CMake-97c97730a6c93b46295284c5a49d285f57a57121.tar.gz
CMake-97c97730a6c93b46295284c5a49d285f57a57121.tar.bz2
BUG: Character + should be valid in a variable name.
Diffstat (limited to 'Source/cmCommandArgumentLexer.h')
-rw-r--r--Source/cmCommandArgumentLexer.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/Source/cmCommandArgumentLexer.h b/Source/cmCommandArgumentLexer.h
index f5209df..582bfce 100644
--- a/Source/cmCommandArgumentLexer.h
+++ b/Source/cmCommandArgumentLexer.h
@@ -13,7 +13,7 @@
#define FLEX_SCANNER
#define YY_FLEX_MAJOR_VERSION 2
#define YY_FLEX_MINOR_VERSION 5
-#define YY_FLEX_SUBMINOR_VERSION 31
+#define YY_FLEX_SUBMINOR_VERSION 33
#if YY_FLEX_SUBMINOR_VERSION > 0
#define FLEX_BETA
#endif
@@ -36,6 +36,14 @@
/* C99 systems have <inttypes.h>. Non-C99 systems may or may not. */
#if defined __STDC_VERSION__ && __STDC_VERSION__ >= 199901L
+
+/* C99 says to define __STDC_LIMIT_MACROS before including stdint.h,
+ * if you want the limit (max/min) macros for int types.
+ */
+#ifndef __STDC_LIMIT_MACROS
+#define __STDC_LIMIT_MACROS 1
+#endif
+
#include <inttypes.h>
typedef int8_t flex_int8_t;
typedef uint8_t flex_uint8_t;