mirror of
https://github.com/boostorg/python.git
synced 2026-01-23 05:42:30 +00:00
Tru64 cxx requires X::operator!=
[SVN r19450]
This commit is contained in:
@@ -14,6 +14,7 @@ struct X // a container element
|
||||
void reset() { s = "reset"; }
|
||||
void foo() { s = "foo"; }
|
||||
bool operator==(X const& x) const { return s == x.s; }
|
||||
bool operator!=(X const& x) const { return s != x.s; }
|
||||
};
|
||||
|
||||
std::string x_value(X const& x)
|
||||
|
||||
Reference in New Issue
Block a user