diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2018-07-22 15:19:56 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2018-07-22 15:19:56 (GMT) |
commit | 185d6abdc832e7dd66183a2154a13a546414b96f (patch) | |
tree | 2e37e5d4a6d3250e5b0d5ca02c3e57ba4458ed41 /src/entry.cpp | |
parent | 982fce9e021e5359ec2572cbbb815a47bc822e70 (diff) | |
download | Doxygen-185d6abdc832e7dd66183a2154a13a546414b96f.zip Doxygen-185d6abdc832e7dd66183a2154a13a546414b96f.tar.gz Doxygen-185d6abdc832e7dd66183a2154a13a546414b96f.tar.bz2 |
Moved local toc data into a separate type for better encapsulation
Diffstat (limited to 'src/entry.cpp')
-rw-r--r-- | src/entry.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/entry.cpp b/src/entry.cpp index e4fb0a5..a0460da 100644 --- a/src/entry.cpp +++ b/src/entry.cpp @@ -74,10 +74,6 @@ Entry::Entry(const Entry &e) initLines = e.initLines; stat = e.stat; localToc = e.localToc; - for (int i = 0; i < sizeof(localTocLevel) / sizeof(*localTocLevel) ; i++) - { - localTocLevel[i] = e.localTocLevel[i]; - } explicitExternal = e.explicitExternal; proto = e.proto; subGrouping = e.subGrouping; @@ -258,11 +254,6 @@ void Entry::reset() mtype = Method; virt = Normal; stat = FALSE; - localToc = Definition::None; - for (int i = 0; i < sizeof(localTocLevel) / sizeof(*localTocLevel) ; i++) - { - localTocLevel[i] = 0; - } proto = FALSE; explicitExternal = FALSE; spec = 0; |