summaryrefslogtreecommitdiff
path: root/cpp/include/IceUtil/Config.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/include/IceUtil/Config.h')
-rw-r--r--cpp/include/IceUtil/Config.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/cpp/include/IceUtil/Config.h b/cpp/include/IceUtil/Config.h
index 8b2e99ca0a8..3e8ddd03ff0 100644
--- a/cpp/include/IceUtil/Config.h
+++ b/cpp/include/IceUtil/Config.h
@@ -221,4 +221,24 @@ typedef long long Int64;
#define ICE_STRING_VERSION "3.3.1" // "A.B.C", with A=major, B=minor, C=patch
#define ICE_INT_VERSION 30301 // AABBCC, with AA=major, BB=minor, CC=patch
+#if defined(__BCPLUSPLUS__) && (__BCPLUSPLUS__ >= 0x0600)
+//
+// Dummy class used in work around for bug in C++Builder 2009
+// http://qc.embarcadero/wc/qcmain.aspx?d=71611
+//
+namespace IceUtil
+{
+
+class DummyBCC
+{
+public:
+
+ ~DummyBCC()
+ {
+ }
+};
+
+}
+#endif
+
#endif