-// FIXME-VC6: expressions involving logical operations are not compiled
-// correctly without these operators
-#ifdef __VISUALC6__
- 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 // __VISUALC6__
-