32cf374a4b
The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/doxygen#6b0c5db74b337b843ad543bf84325b6e1ef5d040
26 lines
937 B
Diff
26 lines
937 B
Diff
From 1fda77f54a2eacba32658001329bd9084f4df1e7 Mon Sep 17 00:00:00 2001
|
|
From: Dimitri van Heesch <doxygen@gmail.com>
|
|
Date: Fri, 11 Sep 2020 15:38:01 +0200
|
|
Subject: [PATCH] issue #8022: Different results on 64 and 32 bit
|
|
|
|
---
|
|
src/doxygen.cpp | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/src/doxygen.cpp b/src/doxygen.cpp
|
|
index b218d382..0832e5c6 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
|
|
--
|
|
2.26.2
|
|
|