Lots and lots and lots of MSVC fixes for archive stuff, some stuff from patch 1071373

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30730 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Ryan Norton
2004-11-23 13:49:43 +00:00
parent 36b79d445d
commit 95662a8379
2 changed files with 111 additions and 83 deletions

View File

@@ -284,14 +284,12 @@ public:
return it;
}
friend bool operator ==(const wxArchiveIterator& i,
const wxArchiveIterator& j) {
return i.m_rep == j.m_rep;
bool operator ==(const wxArchiveIterator& j) {
return (*this).m_rep == j.m_rep;
}
friend bool operator !=(const wxArchiveIterator& i,
const wxArchiveIterator& j) {
return !(i == j);
bool operator !=(const wxArchiveIterator& j) {
return !(*this == j);
}
private: