mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-23 02:03:04 +01:00
Misc.
This commit is contained in:
parent
c235774864
commit
c76ea0e7d3
@ -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; }
|
||||
|
Loading…
Reference in New Issue
Block a user