diff options
author | Benoit Foucher <benoit@zeroc.com> | 2012-08-06 10:24:57 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2012-08-06 10:24:57 +0200 |
commit | e6f5dc2c89eda44fb0a3d444223131a31867a1b2 (patch) | |
tree | b6bddfe0a0cccef45484314f47967d95a01472bb /cpp/src/Ice/Service.cpp | |
parent | more Java changes & tests (diff) | |
parent | ICE-4804 - Properties and case-mismatch (diff) | |
download | ice-e6f5dc2c89eda44fb0a3d444223131a31867a1b2.tar.bz2 ice-e6f5dc2c89eda44fb0a3d444223131a31867a1b2.tar.xz ice-e6f5dc2c89eda44fb0a3d444223131a31867a1b2.zip |
Merge remote-tracking branch 'origin/master' into encoding11
Conflicts:
cpp/include/Ice/Stream.h
cpp/include/Slice/Preprocessor.h
rb/ruby/Makefile.mak
Diffstat (limited to 'cpp/src/Ice/Service.cpp')
-rw-r--r-- | cpp/src/Ice/Service.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cpp/src/Ice/Service.cpp b/cpp/src/Ice/Service.cpp index 3a47db215e1..196e31ae6b7 100644 --- a/cpp/src/Ice/Service.cpp +++ b/cpp/src/Ice/Service.cpp @@ -852,16 +852,16 @@ Ice::Service::main(int argc, char* const argv[], const InitializationData& initi int Ice::Service::main(int& argc, wchar_t* argv[], const InitializationData& initializationData) { -#ifdef __BCPLUSPLUS__ // COMPILER FIX + +# ifdef __MINGW32__ // COMPILER FIX // - // BCC doesn't see the main overload if we don't create the temp args object here. + // MinGW doesn't see the main overload if we don't create the temp args object here. // Ice::StringSeq args = Ice::argsToStringSeq(argc, argv, initializationData.stringConverter); return main(args, initializationData); -#else +# else return main(Ice::argsToStringSeq(argc, argv, initializationData.stringConverter), initializationData); -#endif - +# endif } #endif |