diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2018-07-22 13:34:57 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2018-07-22 13:34:57 (GMT) |
commit | 982fce9e021e5359ec2572cbbb815a47bc822e70 (patch) | |
tree | 24d8fc538734f725ebb718ff720b4e8b61d9720d /src/marshal.cpp | |
parent | 5c4ee43f13433a0c1de63805cc139b61e9a4d872 (diff) | |
parent | 956342ae0b2e09f5e398778c255006f9d26e7b52 (diff) | |
download | Doxygen-982fce9e021e5359ec2572cbbb815a47bc822e70.zip Doxygen-982fce9e021e5359ec2572cbbb815a47bc822e70.tar.gz Doxygen-982fce9e021e5359ec2572cbbb815a47bc822e70.tar.bz2 |
Merge branch 'feature/bug_tableofcontents_latex' of https://github.com/albert-github/doxygen into albert-github-feature/bug_tableofcontents_latex
Diffstat (limited to 'src/marshal.cpp')
-rw-r--r-- | src/marshal.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/marshal.cpp b/src/marshal.cpp index af14978..43c5511 100644 --- a/src/marshal.cpp +++ b/src/marshal.cpp @@ -355,6 +355,11 @@ void marshalEntry(StorageIntf *s,Entry *e) marshalUInt64(s,e->spec); marshalInt(s,e->initLines); marshalBool(s,e->stat); + marshalInt(s,e->localToc); + for (int i = 0; i < sizeof(e->localTocLevel) / sizeof(*(e->localTocLevel)) ; i++) + { + marshalInt(s,e->localTocLevel[i]); + } marshalBool(s,e->explicitExternal); marshalBool(s,e->proto); marshalBool(s,e->subGrouping); @@ -737,6 +742,11 @@ Entry * unmarshalEntry(StorageIntf *s) e->spec = unmarshalUInt64(s); e->initLines = unmarshalInt(s); e->stat = unmarshalBool(s); + e->localToc = unmarshalInt(s); + for (int i = 0; i < sizeof(e->localTocLevel) / sizeof(*(e->localTocLevel)) ; i++) + { + e->localTocLevel[i] = unmarshalInt(s); + } e->explicitExternal = unmarshalBool(s); e->proto = unmarshalBool(s); e->subGrouping = unmarshalBool(s); |