2
0
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:
Ralf W. Grosse-Kunstleve
2003-08-05 00:49:33 +00:00
parent d598404c48
commit 437fb70852

View File

@@ -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)