diff options
author | Benoit Foucher <benoit@zeroc.com> | 2013-01-15 11:05:58 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2013-01-15 11:05:58 +0100 |
commit | 408860bae977b1e9cdcad8782afef4199a5f6209 (patch) | |
tree | df586b306d248104603e7da2bd1e6dd2b9765bbb /cpp/src/slice2cpp/Gen.cpp | |
parent | Fixed ICE-5126 - Improved client side encoding checks (diff) | |
download | ice-408860bae977b1e9cdcad8782afef4199a5f6209.tar.bz2 ice-408860bae977b1e9cdcad8782afef4199a5f6209.tar.xz ice-408860bae977b1e9cdcad8782afef4199a5f6209.zip |
Fixed ICE-4971 - inherit publicly from IceInternal::GCShared
Diffstat (limited to 'cpp/src/slice2cpp/Gen.cpp')
-rw-r--r-- | cpp/src/slice2cpp/Gen.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/slice2cpp/Gen.cpp b/cpp/src/slice2cpp/Gen.cpp index e0633bcc1be..d5a8956bf92 100644 --- a/cpp/src/slice2cpp/Gen.cpp +++ b/cpp/src/slice2cpp/Gen.cpp @@ -3335,7 +3335,7 @@ Slice::Gen::ObjectVisitor::visitClassDefStart(const ClassDefPtr& p) bool override = p->canBeCyclic() && (!hasBaseClass || !bases.front()->canBeCyclic()); if(!basePreserved && (override || preserved)) { - H << ", private IceInternal::GCShared"; + H << ", public IceInternal::GCShared"; } H.restoreIndent(); |