summaryrefslogtreecommitdiffstats
path: root/src/code.l
diff options
context:
space:
mode:
authorlameventanas <lameventanas@gmail.com>2015-11-25 11:18:54 (GMT)
committerlameventanas <lameventanas@gmail.com>2015-11-25 11:18:54 (GMT)
commita8c73cdbe37cc53c398002d20e94037552a8fb55 (patch)
tree3f98c55feb926908c52d5caa7a78351d47990e92 /src/code.l
parent40897d59939828ea07c591d83e9c2b4d2a00f43a (diff)
downloadDoxygen-a8c73cdbe37cc53c398002d20e94037552a8fb55.zip
Doxygen-a8c73cdbe37cc53c398002d20e94037552a8fb55.tar.gz
Doxygen-a8c73cdbe37cc53c398002d20e94037552a8fb55.tar.bz2
Fixed preprocessor macros for flex version check
Diffstat (limited to 'src/code.l')
-rw-r--r--src/code.l2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/code.l b/src/code.l
index f014924..5b8a084 100644
--- a/src/code.l
+++ b/src/code.l
@@ -3700,7 +3700,7 @@ void codeFreeScanner()
extern "C" { // some bogus code to keep the compiler happy
void codeYYdummy() { yy_flex_realloc(0,0); }
}
-#elif YY_FLEX_MAJOR_VERISON<=2 && YY_FLEX_MINOR_VERSION<=5 && YY_FLEX_SUBMINOR_VERSION<33
+#elif YY_FLEX_MAJOR_VERSION<=2 && YY_FLEX_MINOR_VERSION<=5 && YY_FLEX_SUBMINOR_VERSION<33
#error "You seem to be using a version of flex newer than 2.5.4. These are currently incompatible with 2.5.4, and do NOT work with doxygen! Please use version 2.5.4 or expect things to be parsed wrongly! A bug report has been submitted (#732132)."
#endif