Blame doxygen-different-results-on-64-and-32-bit.patch

f9a41f
From 1fda77f54a2eacba32658001329bd9084f4df1e7 Mon Sep 17 00:00:00 2001
f9a41f
From: Dimitri van Heesch <doxygen@gmail.com>
f9a41f
Date: Fri, 11 Sep 2020 15:38:01 +0200
f9a41f
Subject: [PATCH] issue #8022: Different results on 64 and 32 bit
f9a41f
f9a41f
---
f9a41f
 src/doxygen.cpp | 2 +-
f9a41f
 1 file changed, 1 insertion(+), 1 deletion(-)
f9a41f
f9a41f
diff --git a/src/doxygen.cpp b/src/doxygen.cpp
f9a41f
index b218d382..0832e5c6 100644
f9a41f
--- a/src/doxygen.cpp
f9a41f
+++ b/src/doxygen.cpp
f9a41f
@@ -164,7 +164,7 @@ DefinesPerFileList Doxygen::macroDefinitions;
f9a41f
 bool             Doxygen::clangAssistedParsing = FALSE;
f9a41f
 
f9a41f
 // locally accessible globals
f9a41f
-static std::unordered_map< std::string, const Entry* > g_classEntries;
f9a41f
+static std::map< std::string, const Entry* > g_classEntries;
f9a41f
 static StringVector     g_inputFiles;
f9a41f
 static QDict<void>      g_compoundKeywordDict(7);  // keywords recognised as compounds
f9a41f
 static OutputList      *g_outputList = 0;          // list of output generating objects
f9a41f
-- 
f9a41f
2.26.2
f9a41f