]> git.saurik.com Git - wxWidgets.git/commitdiff
add DMC to misbehaving compilers
authorChris Elliott <biol75@york.ac.uk>
Fri, 5 Oct 2007 17:03:32 +0000 (17:03 +0000)
committerChris Elliott <biol75@york.ac.uk>
Fri, 5 Oct 2007 17:03:32 +0000 (17:03 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@49044 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/confbase.h

index 4f74387ff566eff32ee10a0fecf0f071cbed1e8c..9bff8dedb5b595087aab98e117814afaf2f798e2 100644 (file)
@@ -186,7 +186,7 @@ public:
 #endif // wxUSE_BASE64
 
   // Causes ambiguities in VC++ 6 and OpenVMS (at least)
-#if ( (!defined(__VISUALC__) || __VISUALC__ > 1200) && !defined( __VMS ) )
+#if ( (!defined(__VISUALC__) || __VISUALC__ > 1200) && !defined( __VMS ) && !defined (__DMC__))
   // read other types, for which wxFromString is defined
   template <typename T>
   bool Read(const wxString& key, T* value) const
@@ -295,7 +295,7 @@ public:
     { return DoWriteDouble(key, value); }
 
   // Causes ambiguities in VC++ 6 and OpenVMS (at least)
-#if ( (!defined(__VISUALC__) || __VISUALC__ > 1200) && !defined( __VMS ) )
+#if ( (!defined(__VISUALC__) || __VISUALC__ > 1200) && !defined( __VMS ) && !defined (__DMC__))
   // for other types, use wxToString()
   template <typename T>
   bool Write(const wxString& key, T const& value)