diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-10-01 17:23:42 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2000-10-01 17:23:42 (GMT) |
commit | 499475795ed160e3a1e9cb571adc1ad86dc6a8ba (patch) | |
tree | ff3e5497c510b749f3d2e73414320758618faa42 /src/entry.cpp | |
parent | 168b741da042373d667e226cace55c9e82ec8faa (diff) | |
download | Doxygen-499475795ed160e3a1e9cb571adc1ad86dc6a8ba.zip Doxygen-499475795ed160e3a1e9cb571adc1ad86dc6a8ba.tar.gz Doxygen-499475795ed160e3a1e9cb571adc1ad86dc6a8ba.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; |