8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 04:43:03 +01:00
This commit is contained in:
dimitr 2013-09-23 12:27:40 +00:00
parent c235774864
commit c76ea0e7d3

View File

@ -91,8 +91,8 @@ public:
bool operator==(const char* s) const { return compare(s) == 0; }
bool operator!=(const char* s) const { return compare(s) != 0; }
bool operator==(const AbstractString& s) const { return compare(s.c_str()) == 0; }
bool operator!=(const AbstractString& s) const { return compare(s.c_str()) != 0; }
bool operator==(const AbstractString& s) const { return compare(s) == 0; }
bool operator!=(const AbstractString& s) const { return compare(s) != 0; }
bool operator==(const MetaName& m) const { return compare(m) == 0; }
bool operator!=(const MetaName& m) const { return compare(m) != 0; }
bool operator<=(const MetaName& m) const { return compare(m) <= 0; }