summaryrefslogtreecommitdiff
path: root/ACE/ace/Compression
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2020-05-27 08:21:55 +0200
committerJohnny Willemsen <jwillemsen@remedy.nl>2020-05-27 08:21:55 +0200
commit70220ed436a20dad8d2cdcc4d39d4faa4e5819aa (patch)
treef888e1ae865ec6aca1250904ce79079060ee883b /ACE/ace/Compression
parent0a50ebb1c91efb70a4d7de65eac68aca22f1485a (diff)
downloadATCD-70220ed436a20dad8d2cdcc4d39d4faa4e5819aa.tar.gz
Add support for Embarcadero C++ Builder 10.4 Sydney
* ACE/NEWS: * ACE/ace/Compression/rle/RLECompressor.cpp: * ACE/ace/OS_NS_Thread.cpp: * ACE/ace/config-win32-borland.h: * ACE/ace/os_include/net/os_if.h: * TAO/orbsvcs/orbsvcs/IFRService/IFR_Service_Utils_T.cpp: * TAO/orbsvcs/orbsvcs/Notify/MonitorControlExt/MC_Default_Factory.h: * TAO/orbsvcs/orbsvcs/Notify/RT_Factory.h: * TAO/orbsvcs/tests/Notify/Bug_3252_Regression/server.cpp: * TAO/tests/Bug_3574_Regression/test.cpp:
Diffstat (limited to 'ACE/ace/Compression')
-rw-r--r--ACE/ace/Compression/rle/RLECompressor.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ACE/ace/Compression/rle/RLECompressor.cpp b/ACE/ace/Compression/rle/RLECompressor.cpp
index 43d48e844b9..cbed31d58f1 100644
--- a/ACE/ace/Compression/rle/RLECompressor.cpp
+++ b/ACE/ace/Compression/rle/RLECompressor.cpp
@@ -1,7 +1,7 @@
#include "RLECompressor.h"
#include "ace/OS_NS_string.h"
-#if defined (__BORLANDC__) && (__BORLANDC__ >= 0x660) && (__BORLANDC__ <= 0x740)
+#if defined (__BORLANDC__) && (__BORLANDC__ >= 0x660) && (__BORLANDC__ <= 0x750)
# pragma option push -w-8072
#endif
@@ -140,6 +140,6 @@ ACE_SINGLETON_TEMPLATE_INSTANTIATE(ACE_Singleton, ACE_RLECompressor, ACE_SYNCH_M
// Close versioned namespace, if enabled by the user.
ACE_END_VERSIONED_NAMESPACE_DECL
-#if defined (__BORLANDC__) && (__BORLANDC__ >= 0x660) && (__BORLANDC__ <= 0x740)
+#if defined (__BORLANDC__) && (__BORLANDC__ >= 0x660) && (__BORLANDC__ <= 0x750)
# pragma option pop
#endif