diff options
-rw-r--r-- | src/doxygen.cpp | 1 | ||||
-rw-r--r-- | src/doxygen.h | 1 | ||||
-rw-r--r-- | src/pre.l | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/src/doxygen.cpp b/src/doxygen.cpp index f6e8d09..5f5d3ce 100644 --- a/src/doxygen.cpp +++ b/src/doxygen.cpp @@ -163,7 +163,6 @@ bool Doxygen::suppressDocWarnings = FALSE; QCString Doxygen::objDBFileName; QCString Doxygen::entryDBFileName; QCString Doxygen::filterDBFileName; -bool Doxygen::gatherDefines = TRUE; IndexList *Doxygen::indexList; int Doxygen::subpageNestingLevel = 0; bool Doxygen::userComments = FALSE; diff --git a/src/doxygen.h b/src/doxygen.h index 19136c3..f08be86 100644 --- a/src/doxygen.h +++ b/src/doxygen.h @@ -140,7 +140,6 @@ class Doxygen static QCString entryDBFileName; static QCString filterDBFileName; static CiteDict *citeDict; - static bool gatherDefines; static bool userComments; static IndexList *indexList; static int subpageNestingLevel; @@ -2801,7 +2801,6 @@ static void addDefine(yyscan_t yyscanner) YY_EXTRA_TYPE state = preYYget_extra(yyscanner); if (state->skip) return; // do not add this define as it is inside a // conditional section (cond command) that is disabled. - if (!Doxygen::gatherDefines) return; //printf("addDefine '%s' '%s'\n",state->defName.data(),state->defArgsStr.data()); //ArgumentList *al = new ArgumentList; |