diff options
author | Dimitri van Heesch <doxygen@gmail.com> | 2020-09-11 13:38:01 (GMT) |
---|---|---|
committer | Dimitri van Heesch <doxygen@gmail.com> | 2020-09-11 13:38:01 (GMT) |
commit | 1fda77f54a2eacba32658001329bd9084f4df1e7 (patch) | |
tree | 4b49e604e4f46fdeeef7ac64233a4d059c114f6b /src | |
parent | 99ca73d04ac162741fb63403c5bfb8cb9809ff1c (diff) | |
download | Doxygen-1fda77f54a2eacba32658001329bd9084f4df1e7.zip Doxygen-1fda77f54a2eacba32658001329bd9084f4df1e7.tar.gz Doxygen-1fda77f54a2eacba32658001329bd9084f4df1e7.tar.bz2 |
issue #8022: Different results on 64 and 32 bit
Diffstat (limited to 'src')
-rw-r--r-- | src/doxygen.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doxygen.cpp b/src/doxygen.cpp index b218d38..0832e5c 100644 --- a/src/doxygen.cpp +++ b/src/doxygen.cpp @@ -164,7 +164,7 @@ DefinesPerFileList Doxygen::macroDefinitions; bool Doxygen::clangAssistedParsing = FALSE; // locally accessible globals -static std::unordered_map< std::string, const Entry* > g_classEntries; +static std::map< std::string, const Entry* > g_classEntries; static StringVector g_inputFiles; static QDict<void> g_compoundKeywordDict(7); // keywords recognised as compounds static OutputList *g_outputList = 0; // list of output generating objects |