diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2000-10-01 17:23:42 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2000-10-01 17:23:42 (GMT) |
commit | 0d0eec1df129221379625a52e5fe8ff6f21f104c (patch) | |
tree | ff3e5497c510b749f3d2e73414320758618faa42 /src/entry.cpp | |
parent | 6778bfcda9c30df98ea011cca3d36705798531b4 (diff) | |
download | Doxygen-0d0eec1df129221379625a52e5fe8ff6f21f104c.zip Doxygen-0d0eec1df129221379625a52e5fe8ff6f21f104c.tar.gz Doxygen-0d0eec1df129221379625a52e5fe8ff6f21f104c.tar.bz2 |
Release-1.2.2-20001001
Diffstat (limited to 'src/entry.cpp')
-rw-r--r-- | src/entry.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/entry.cpp b/src/entry.cpp index 3e4bc89..a8dfb9b 100644 --- a/src/entry.cpp +++ b/src/entry.cpp @@ -56,6 +56,7 @@ Entry::Entry(const Entry &e) type = e.type.copy(); name = e.name.copy(); args = e.args.copy(); + bitfields = e.bitfields.copy(); exception = e.exception.copy(); program = e.program.copy(); includeFile = e.includeFile.copy(); @@ -197,6 +198,7 @@ void Entry::reset() name.resize(0); type.resize(0); args.resize(0); + bitfields.resize(0); exception.resize(0); program.resize(0); //body.resize(0); @@ -242,6 +244,7 @@ int Entry::getSize() size+=type.length()+1; size+=name.length()+1; size+=args.length()+1; + size+=bitfields.length()+1; size+=exception.length()+1; size+=program.length()+1; //size+=body.length()+1; |