summaryrefslogtreecommitdiffstats
path: root/src/entry.cpp
diff options
context:
space:
mode:
authorJoe George <joe@zeroc.com>2018-11-05 16:58:13 (GMT)
committerJoe George <joe@zeroc.com>2018-11-05 16:58:13 (GMT)
commite81a74499ef2deff2112ff2eabe1015f76588120 (patch)
tree89f124a1d9460913be70d75c32a14e30a4dbdf66 /src/entry.cpp
parentd5fd75574bc816e95f1bcdcdb8e2121949d484d8 (diff)
parent9440d7ce0b31749b6bbb13e70e2f7ed501505c7e (diff)
downloadDoxygen-e81a74499ef2deff2112ff2eabe1015f76588120.zip
Doxygen-e81a74499ef2deff2112ff2eabe1015f76588120.tar.gz
Doxygen-e81a74499ef2deff2112ff2eabe1015f76588120.tar.bz2
Merge remote-tracking branch 'doxygen/master'
Diffstat (limited to 'src/entry.cpp')
-rw-r--r--src/entry.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/entry.cpp b/src/entry.cpp
index 534603a..15c6fec 100644
--- a/src/entry.cpp
+++ b/src/entry.cpp
@@ -79,6 +79,8 @@ Entry::Entry(const Entry &e)
subGrouping = e.subGrouping;
callGraph = e.callGraph;
callerGraph = e.callerGraph;
+ referencedByRelation = e.referencedByRelation;
+ referencesRelation = e.referencesRelation;
virt = e.virt;
args = e.args;
bitfields = e.bitfields;
@@ -219,6 +221,8 @@ void Entry::reset()
{
static bool entryCallGraph = Config_getBool(CALL_GRAPH);
static bool entryCallerGraph = Config_getBool(CALLER_GRAPH);
+ static bool entryReferencedByRelation = Config_getBool(REFERENCED_BY_RELATION);
+ static bool entryReferencesRelation = Config_getBool(REFERENCES_RELATION);
//printf("Entry::reset()\n");
name.resize(0);
type.resize(0);
@@ -250,6 +254,8 @@ void Entry::reset()
mGrpId = -1;
callGraph = entryCallGraph;
callerGraph = entryCallerGraph;
+ referencedByRelation = entryReferencedByRelation;
+ referencesRelation = entryReferencesRelation;
section = EMPTY_SEC;
mtype = Method;
virt = Normal;