]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/anystr.h
Fix missing or broken interface items for Phoenix
[wxWidgets.git] / include / wx / anystr.h
index 678741bdef0f2b5866b907cde21ac62dc8082a1b..4251d37d1ad2e83b1f761361cfb3fbc655b64313 100644 (file)
@@ -136,13 +136,5 @@ private:
     wxDECLARE_NO_ASSIGN_CLASS(wxAnyStrPtr);
 };
 
     wxDECLARE_NO_ASSIGN_CLASS(wxAnyStrPtr);
 };
 
-// at least for VC6 and VC7 these operators are needed too, otherwise boolean
-// expressions involving wxAnyStrPtr don't compile because of ambiguity between
-// built-in overloads of these operators for (bool, bool/char*/wchar_t*)
-inline bool operator||(const wxAnyStrPtr& p, bool v) { return (bool)p || v; }
-inline bool operator||(bool v, const wxAnyStrPtr& p) { return v || (bool)p; }
-inline bool operator&&(const wxAnyStrPtr& p, bool v) { return (bool)p && v; }
-inline bool operator&&(bool v, const wxAnyStrPtr& p) { return v && (bool)p; }
-
 #endif // _WX_ANYSTR_H_
 
 #endif // _WX_ANYSTR_H_