diff options
Diffstat (limited to 'src/constexp.h')
-rw-r--r-- | src/constexp.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/constexp.h b/src/constexp.h index 2b09ed9..6f230f9 100644 --- a/src/constexp.h +++ b/src/constexp.h @@ -22,10 +22,12 @@ #include "qtbc.h" #include "cppvalue.h" -extern bool parseCppExpression(const QCString &s); +extern bool parseCppExpression(const char *fileName,int line,const QCString &s); extern int cppExpYYparse(); extern int cppExpYYdebug; -extern QCString strToken; -extern CPPValue resultValue; +extern QCString g_strToken; +extern CPPValue g_resultValue; +extern QCString g_constExpFileName; +extern int g_constExpLineNr; #endif |