diff options
Diffstat (limited to 'src/fortrancode.l')
-rw-r--r-- | src/fortrancode.l | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/fortrancode.l b/src/fortrancode.l index a0965d0..9ba4ba8 100644 --- a/src/fortrancode.l +++ b/src/fortrancode.l @@ -1156,9 +1156,9 @@ void parseFortranCode(CodeOutputInterface &od,const char *className,const QCStri startCodeLine(); g_parmName.resize(0); g_parmType.resize(0); - fcodeYYrestart( fcodeYYin ); + fortrancodeYYrestart( fortrancodeYYin ); BEGIN( Start ); - fcodeYYlex(); + fortrancodeYYlex(); if (g_needsTermination) { endFontClass(); @@ -1179,13 +1179,13 @@ void parseFortranCode(CodeOutputInterface &od,const char *className,const QCStri #if !defined(YY_FLEX_SUBMINOR_VERSION) extern "C" { // some bogus code to keep the compiler happy - void fcodeYYdummy() { yy_flex_realloc(0,0); } + void fortrancodeYYdummy() { yy_flex_realloc(0,0); } } #elif YY_FLEX_SUBMINOR_VERSION<33 #error "You seem to be using a version of flex newer than 2.5.4 but older than 2.5.33. These versions do NOT work with doxygen! Please use version <=2.5.4 or >=2.5.33 or expect things to be parsed wrongly!" #else extern "C" { // some bogus code to keep the compiler happy - void fcodeYYdummy() { yy_top_state(); } + void fortrancodeYYdummy() { yy_top_state(); } } #endif |