Fix String const operators.
Added const to various operators.
This commit is contained in:
@@ -49,15 +49,15 @@ public:
|
||||
wchar_t operator[](const int idx) const;
|
||||
|
||||
void operator=(const String &s);
|
||||
bool operator==(const String &s);
|
||||
bool operator!=(const String &s);
|
||||
String operator+(const String &s);
|
||||
bool operator==(const String &s) const;
|
||||
bool operator!=(const String &s) const;
|
||||
String operator+(const String &s) const;
|
||||
void operator+=(const String &s);
|
||||
void operator+=(const wchar_t c);
|
||||
bool operator<(const String &s);
|
||||
bool operator<=(const String &s);
|
||||
bool operator>(const String &s);
|
||||
bool operator>=(const String &s);
|
||||
void operator+=(const wchar_t c) const;
|
||||
bool operator<(const String &s) const;
|
||||
bool operator<=(const String &s) const;
|
||||
bool operator>(const String &s) const;
|
||||
bool operator>=(const String &s) const;
|
||||
|
||||
operator NodePath() const;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user