diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2009-10-02 15:08:00 -0230 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2009-10-02 15:08:00 -0230 |
commit | 450a4f08606c856333a4f4c44f9f23fc93ff4c4c (patch) | |
tree | e7b14dd3801e260dec8928c12d642a298d618e01 /cpp/src/Ice/Protocol.cpp | |
parent | Upgrade to BDB 4.8.24 (diff) | |
download | ice-450a4f08606c856333a4f4c44f9f23fc93ff4c4c.tar.bz2 ice-450a4f08606c856333a4f4c44f9f23fc93ff4c4c.tar.xz ice-450a4f08606c856333a4f4c44f9f23fc93ff4c4c.zip |
Remove BCC workarounds no longer required
Diffstat (limited to 'cpp/src/Ice/Protocol.cpp')
-rw-r--r-- | cpp/src/Ice/Protocol.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/cpp/src/Ice/Protocol.cpp b/cpp/src/Ice/Protocol.cpp index 458c7b4e702..8637a3b1936 100644 --- a/cpp/src/Ice/Protocol.cpp +++ b/cpp/src/Ice/Protocol.cpp @@ -14,11 +14,7 @@ namespace IceInternal const Ice::Byte magic[] = { 0x49, 0x63, 0x65, 0x50 }; // 'I', 'c', 'e', 'P' -#ifdef __BCPLUSPLUS__ -const Ice::Byte requestHdr[headerSize + sizeof(Ice::Int)] = -#else const Ice::Byte requestHdr[] = -#endif { magic[0], magic[1], @@ -34,11 +30,7 @@ const Ice::Byte requestHdr[] = 0, 0, 0, 0 // Request id (placeholder) }; -#ifdef __BCPLUSPLUS__ -const Ice::Byte requestBatchHdr[headerSize + sizeof(Ice::Int)] = -#else const Ice::Byte requestBatchHdr[] = -#endif { magic[0], magic[1], |