diff options
author | Michi Henning <michi@zeroc.com> | 2005-03-24 03:18:02 +0000 |
---|---|---|
committer | Michi Henning <michi@zeroc.com> | 2005-03-24 03:18:02 +0000 |
commit | 5e920cd4d1ac992bb56cb9b2273a2c2079ab8f0a (patch) | |
tree | 09196a524e06a9c51df250984c138e518c14d7e4 /cpp/src/slice2cppe/Main.cpp | |
parent | Fixed http://bugzilla.zeroc.com/bugzilla/show_bug.cgi?id=188 (diff) | |
download | ice-5e920cd4d1ac992bb56cb9b2273a2c2079ab8f0a.tar.bz2 ice-5e920cd4d1ac992bb56cb9b2273a2c2079ab8f0a.tar.xz ice-5e920cd4d1ac992bb56cb9b2273a2c2079ab8f0a.zip |
Added slice2cppe and slice2javae to "all" target for VC++ and fixed
Main.cpp for both to call parse() with the parameter that was removed
with the change to disallow definitions at global scope.
Diffstat (limited to 'cpp/src/slice2cppe/Main.cpp')
-rw-r--r-- | cpp/src/slice2cppe/Main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/slice2cppe/Main.cpp b/cpp/src/slice2cppe/Main.cpp index d60fc9032ef..3dd9e7ec820 100644 --- a/cpp/src/slice2cppe/Main.cpp +++ b/cpp/src/slice2cppe/Main.cpp @@ -173,7 +173,7 @@ main(int argc, char* argv[]) } UnitPtr u = Unit::createUnit(false, false, ice, caseSensitive); - int parseStatus = u->parse(cppHandle, debug, false); + int parseStatus = u->parse(cppHandle, debug); if(!icecpp.close()) { |