]> git.saurik.com Git - wxWidgets.git/commitdiff
trying with only an operator[] (int) and not (size_t)
authorKarsten Ballüder <ballueder@usa.net>
Thu, 26 Nov 1998 11:38:02 +0000 (11:38 +0000)
committerKarsten Ballüder <ballueder@usa.net>
Thu, 26 Nov 1998 11:38:02 +0000 (11:38 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1060 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/string.h

index b02cff173d69462dc6f2b13a420379415c965d11..58b708df2e027f6fe5a1bcb4a9814d0fec2638d3 100644 (file)
@@ -304,13 +304,13 @@ public:
       { wxASSERT( !IsEmpty() ); CopyBeforeWrite(); return m_pchData[Len()-1]; }
 
     /// operator version of GetChar
+#if 0
     char  operator[](size_t n) const
       { ASSERT_VALID_INDEX( n ); return m_pchData[n]; }
-#ifdef __WXMSW__
+#endif
     /// operator version of GetChar
     char  operator[](int n) const
       { ASSERT_VALID_INDEX( n ); return m_pchData[n]; }
-#endif
     /// operator version of GetWritableChar
     char& operator[](size_t n)
       { ASSERT_VALID_INDEX( n ); CopyBeforeWrite(); return m_pchData[n]; }