diff options
author | Mark Spruiell <mes@zeroc.com> | 2004-11-04 22:30:17 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2004-11-04 22:30:17 +0000 |
commit | 7ea05bd30fbd327e5d34865f0867691e375c1994 (patch) | |
tree | 83f0dcf4425b617c7ea3946f904af68a784d7dbd /cpp/src/Slice/Parser.cpp | |
parent | comment formatting (diff) | |
download | ice-7ea05bd30fbd327e5d34865f0867691e375c1994.tar.bz2 ice-7ea05bd30fbd327e5d34865f0867691e375c1994.tar.xz ice-7ea05bd30fbd327e5d34865f0867691e375c1994.zip |
Fixing a bug in object marshaling. ClassDecl::usesClasse() must return true
always, not just when the type is not an interface.
Diffstat (limited to 'cpp/src/Slice/Parser.cpp')
-rw-r--r-- | cpp/src/Slice/Parser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Slice/Parser.cpp b/cpp/src/Slice/Parser.cpp index 70730ee9314..0277dd28607 100644 --- a/cpp/src/Slice/Parser.cpp +++ b/cpp/src/Slice/Parser.cpp @@ -2195,7 +2195,7 @@ Slice::ClassDecl::uses(const ContainedPtr&) const bool Slice::ClassDecl::usesClasses() const { - return !_interface; + return true; } size_t |