diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2022-11-24 13:24:31 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2022-11-24 13:24:31 +0100 |
commit | eb8ce8d74e9483557ec67b5302b0a11e6c5957c1 (patch) | |
tree | 686a83e3dc710c773cd0cedd83384c139e1a6b9e /core/string/ustring.h | |
parent | 53a8903f793489fa0adf0b5e3976f79703407592 (diff) | |
parent | a479f5af2208882767ae5d11dca35cc9bfecef31 (diff) |
Merge pull request #68833 from BastiaanOlij/improve_extension_logic
Improve logic for detecting and tracking extensions
Diffstat (limited to 'core/string/ustring.h')
-rw-r--r-- | core/string/ustring.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/string/ustring.h b/core/string/ustring.h index 0c171024f7..ed3848fb8a 100644 --- a/core/string/ustring.h +++ b/core/string/ustring.h @@ -156,6 +156,7 @@ public: void operator=(const char *p_cstr); bool operator<(const CharString &p_right) const; + bool operator==(const CharString &p_right) const; CharString &operator+=(char p_char); int length() const { return size() ? size() - 1 : 0; } const char *get_data() const; |