diff options
author | Jose <jose@zeroc.com> | 2012-07-19 18:26:38 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2012-07-19 18:26:38 +0200 |
commit | d0994b8115bc70f04b772d21365703a3a106587d (patch) | |
tree | 1bb72b16494ab7a14a48035e9bdac02dc82b0585 /cpp/src/FreezeScript | |
parent | ICE-4782 Generate "#pragma once" for include-guards in generated C++ header f... (diff) | |
download | ice-d0994b8115bc70f04b772d21365703a3a106587d.tar.bz2 ice-d0994b8115bc70f04b772d21365703a3a106587d.tar.xz ice-d0994b8115bc70f04b772d21365703a3a106587d.zip |
Remove BCC support
Diffstat (limited to 'cpp/src/FreezeScript')
-rwxr-xr-x | cpp/src/FreezeScript/DumpDB.cpp | 3 | ||||
-rwxr-xr-x | cpp/src/FreezeScript/transformdb.cpp | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/cpp/src/FreezeScript/DumpDB.cpp b/cpp/src/FreezeScript/DumpDB.cpp index 13d8e1554bf..5472b1d50a8 100755 --- a/cpp/src/FreezeScript/DumpDB.cpp +++ b/cpp/src/FreezeScript/DumpDB.cpp @@ -629,8 +629,7 @@ run(const Ice::StringSeq& originalArgs, const Ice::CommunicatorPtr& communicator return status; } -//COMPILERFIX: Borland C++ 2010 doesn't support wmain for console applications. -#if defined(_WIN32 ) && !defined(__BCPLUSPLUS__) +#ifdef _WIN32 int wmain(int argc, wchar_t* argv[]) diff --git a/cpp/src/FreezeScript/transformdb.cpp b/cpp/src/FreezeScript/transformdb.cpp index 7d8573fe09d..6a6bd5fe7f5 100755 --- a/cpp/src/FreezeScript/transformdb.cpp +++ b/cpp/src/FreezeScript/transformdb.cpp @@ -928,8 +928,7 @@ run(const Ice::StringSeq& originalArgs, const Ice::CommunicatorPtr& communicator return status; } -//COMPILERFIX: Borland C++ 2010 doesn't support wmain for console applications. -#if defined(_WIN32 ) && !defined(__BCPLUSPLUS__) +#ifdef _WIN32 int wmain(int argc, wchar_t* argv[]) |