diff options
author | Jose <jose@zeroc.com> | 2015-12-01 21:23:52 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2015-12-01 21:23:52 +0100 |
commit | d63c656f325713df77499841533f80af379818c8 (patch) | |
tree | 0f4944cb1c8e2e6d2cd242bb635f96f5c7a4990a /cpp/src/slice2cpp/Gen.cpp | |
parent | removing ObjectFactoryF.ice from python build (diff) | |
download | ice-d63c656f325713df77499841533f80af379818c8.tar.bz2 ice-d63c656f325713df77499841533f80af379818c8.tar.xz ice-d63c656f325713df77499841533f80af379818c8.zip |
Fix issues with handling of new builtin type Ice::Value
Remove ObjectFactoryF from ruby/php builds
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 c0ae7f2fa25..dca641def2d 100644 --- a/cpp/src/slice2cpp/Gen.cpp +++ b/cpp/src/slice2cpp/Gen.cpp @@ -5771,7 +5771,7 @@ Slice::Gen::Cpp11ObjectDeclVisitor::visitClassDecl(const ClassDeclPtr& p) H << sp << nl << "class " << name << ';'; H << nl << "typedef ::std::shared_ptr< " << name << "> " << p->name() << "Ptr;"; } - if(p->isInterface()) + else if(p->isInterface()) { H << sp << nl << "class " << name << ';'; H << nl << "typedef ::std::shared_ptr< " << name << "> " << p->name() << "Ptr;"; |