diff options
Diffstat (limited to 'cpp/src/IcePatch2/Client.cpp')
-rw-r--r-- | cpp/src/IcePatch2/Client.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/cpp/src/IcePatch2/Client.cpp b/cpp/src/IcePatch2/Client.cpp index 29cd1516563..1d428d4af19 100644 --- a/cpp/src/IcePatch2/Client.cpp +++ b/cpp/src/IcePatch2/Client.cpp @@ -170,11 +170,7 @@ private: keyPressed() { bool pressed = false; -#ifdef __BCPLUSPLUS__ - while(kbhit()) -#else while(_kbhit()) -#endif { pressed = true; _getch(); @@ -246,9 +242,6 @@ Client::run(int argc, char* argv[]) vector<string> args; try { -#if defined(__BCPLUSPLUS__) && (__BCPLUSPLUS__ >= 0x0600) - IceUtil::DummyBCC dummy; -#endif args = opts.parse(argc, (const char**)argv); } catch(const IceUtilInternal::BadOptException& e) |