diff options
author | Mark Spruiell <mes@zeroc.com> | 2002-10-24 17:18:29 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2002-10-24 17:18:29 +0000 |
commit | c825c9684a7277259b8762ce6d7b0ae604825058 (patch) | |
tree | 518a4f732d6249171b3cb2ebab9853c08a781e33 /cpp/src/slice2java/Gen.cpp | |
parent | Back out change that prevented proxy to be generated for class without (diff) | |
download | ice-c825c9684a7277259b8762ce6d7b0ae604825058.tar.bz2 ice-c825c9684a7277259b8762ce6d7b0ae604825058.tar.xz ice-c825c9684a7277259b8762ce6d7b0ae604825058.zip |
gcc 3.2 changes
Diffstat (limited to 'cpp/src/slice2java/Gen.cpp')
-rw-r--r-- | cpp/src/slice2java/Gen.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/cpp/src/slice2java/Gen.cpp b/cpp/src/slice2java/Gen.cpp index 18149315339..3f240c5677b 100644 --- a/cpp/src/slice2java/Gen.cpp +++ b/cpp/src/slice2java/Gen.cpp @@ -1816,6 +1816,15 @@ Slice::Gen::TypesVisitor::visitConstDef(const ConstDefPtr& p) { out << p->value() << "L"; // Need to append "L" modifier for long constants } + case Builtin::KindBool: + case Builtin::KindShort: + case Builtin::KindInt: + case Builtin::KindFloat: + case Builtin::KindDouble: + case Builtin::KindObject: + case Builtin::KindObjectProxy: + case Builtin::KindLocalObject: + break; } } |