]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/string.h
Added wxTolBar::etMargins
[wxWidgets.git] / include / wx / string.h
index 58b708df2e027f6fe5a1bcb4a9814d0fec2638d3..474f23d3b6e3f23d5836480284d1c3c7e73139e3 100644 (file)
@@ -303,8 +303,9 @@ public:
     char& Last()
       { wxASSERT( !IsEmpty() ); CopyBeforeWrite(); return m_pchData[Len()-1]; }
 
     char& Last()
       { wxASSERT( !IsEmpty() ); CopyBeforeWrite(); return m_pchData[Len()-1]; }
 
+    // on alpha-linux this gives overload problems:
+#if ! defined(__ALPHA__)
     /// operator version of GetChar
     /// operator version of GetChar
-#if 0
     char  operator[](size_t n) const
       { ASSERT_VALID_INDEX( n ); return m_pchData[n]; }
 #endif
     char  operator[](size_t n) const
       { ASSERT_VALID_INDEX( n ); return m_pchData[n]; }
 #endif