diff options
author | Dimitri van Heesch <doxygen@gmail.com> | 2020-04-25 19:25:11 (GMT) |
---|---|---|
committer | Dimitri van Heesch <doxygen@gmail.com> | 2020-04-25 19:25:11 (GMT) |
commit | 44a19079003d62fb600e8d952a2ea7b6b2b23d22 (patch) | |
tree | 4d8179c4e75e78d99adf472a5aea2fc4b4d8620b /src/doxygen.cpp | |
parent | f1a7068e113e4f028f772a9978eabfa539f32e1d (diff) | |
download | Doxygen-44a19079003d62fb600e8d952a2ea7b6b2b23d22.zip Doxygen-44a19079003d62fb600e8d952a2ea7b6b2b23d22.tar.gz Doxygen-44a19079003d62fb600e8d952a2ea7b6b2b23d22.tar.bz2 |
Refactor: remove symbolStorage references (dead code)
Diffstat (limited to 'src/doxygen.cpp')
-rw-r--r-- | src/doxygen.cpp | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/doxygen.cpp b/src/doxygen.cpp index f94b4e2..1d15a91 100644 --- a/src/doxygen.cpp +++ b/src/doxygen.cpp @@ -154,7 +154,6 @@ SDict<DirRelation> Doxygen::dirRelations(257); ParserManager *Doxygen::parserManager = 0; QCString Doxygen::htmlFileExtension; bool Doxygen::suppressDocWarnings = FALSE; -//Store *Doxygen::symbolStorage; QCString Doxygen::objDBFileName; QCString Doxygen::entryDBFileName; QCString Doxygen::filterDBFileName; @@ -10695,8 +10694,6 @@ void parseInput() * Initialize global lists and dictionaries **************************************************************************/ - //Doxygen::symbolStorage = new Store; - // also scale lookup cache with SYMBOL_CACHE_SIZE int cacheSize = Config_getInt(LOOKUP_CACHE_SIZE); if (cacheSize<0) cacheSize=0; @@ -10717,14 +10714,6 @@ void parseInput() Doxygen::filterDBFileName.sprintf("doxygen_filterdb_%d.tmp",pid); Doxygen::filterDBFileName.prepend(outputDirectory+"/"); -// if (Doxygen::symbolStorage->open(Doxygen::objDBFileName)==-1) -// { -// err("Failed to open temporary file %s\n",Doxygen::objDBFileName.data()); -// exit(1); -// } - - - /************************************************************************** * Check/create output directories * **************************************************************************/ @@ -11537,7 +11526,6 @@ void generateOutput() cleanUpDoxygen(); finalizeSearchIndexer(); -// Doxygen::symbolStorage->close(); QDir thisDir; thisDir.remove(Doxygen::objDBFileName); thisDir.remove(Doxygen::filterDBFileName); @@ -11545,6 +11533,5 @@ void generateOutput() QTextCodec::deleteAllCodecs(); delete Doxygen::symbolMap; delete Doxygen::clangUsrMap; -// delete Doxygen::symbolStorage; g_successfulRun=TRUE; } |