From 437fb70852a0ed8bf6bf4a68b16cc6a11039e009 Mon Sep 17 00:00:00 2001 From: "Ralf W. Grosse-Kunstleve" Date: Tue, 5 Aug 2003 00:49:33 +0000 Subject: [PATCH] Tru64 cxx requires X::operator!= [SVN r19450] --- test/vector_indexing_suite.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/test/vector_indexing_suite.cpp b/test/vector_indexing_suite.cpp index 63846b68..6edd7625 100644 --- a/test/vector_indexing_suite.cpp +++ b/test/vector_indexing_suite.cpp @@ -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)