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:
@@ -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:
|
||||
|
Reference in New Issue
Block a user