diff options
Diffstat (limited to 'include/core/String.hpp')
-rw-r--r-- | include/core/String.hpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/include/core/String.hpp b/include/core/String.hpp index 7826fcb..9bb0e3e 100644 --- a/include/core/String.hpp +++ b/include/core/String.hpp @@ -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; |