summaryrefslogtreecommitdiffstats
path: root/src/doxygen.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/doxygen.cpp')
-rw-r--r--src/doxygen.cpp13
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;
}