]> git.saurik.com Git - wxWidgets.git/commitdiff
Removed sometimes-ambiguous wxString operator
authorJulian Smart <julian@anthemion.co.uk>
Thu, 17 Dec 1998 18:12:31 +0000 (18:12 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Thu, 17 Dec 1998 18:12:31 +0000 (18:12 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1222 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/string.h

index 474f23d3b6e3f23d5836480284d1c3c7e73139e3..4c1ef6f8ae1b9008108baaf06d5ef6dc9462cd5b 100644 (file)
@@ -304,11 +304,15 @@ public:
       { wxASSERT( !IsEmpty() ); CopyBeforeWrite(); return m_pchData[Len()-1]; }
 
     // on alpha-linux this gives overload problems:
+    // Also on Solaris, so removing for now (JACS)
+/*
 #if ! defined(__ALPHA__)
     /// operator version of GetChar
     char  operator[](size_t n) const
       { ASSERT_VALID_INDEX( n ); return m_pchData[n]; }
 #endif
+*/
+
     /// operator version of GetChar
     char  operator[](int n) const
       { ASSERT_VALID_INDEX( n ); return m_pchData[n]; }