Веб-сайт самохостера Lotigara

summaryrefslogtreecommitdiff
path: root/source/core/StarStringView.cpp
diff options
context:
space:
mode:
authorKae <80987908+Novaenia@users.noreply.github.com>2023-07-24 23:37:55 +1000
committerKae <80987908+Novaenia@users.noreply.github.com>2023-07-24 23:37:55 +1000
commit8547c56ba4607e1c4efac483f97f01b8ba8c3a01 (patch)
treed156522eae042e07a1c430220e7d5ab1bfa2727f /source/core/StarStringView.cpp
parent4c636e911ce86bcd6d501fc2f6f3ce2c3dd9c71c (diff)
Proper LuaString <-> String handling
Null-terminator usage is opt-in
Diffstat (limited to 'source/core/StarStringView.cpp')
-rw-r--r--source/core/StarStringView.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/source/core/StarStringView.cpp b/source/core/StarStringView.cpp
index 8ad3b8c..4b45fe6 100644
--- a/source/core/StarStringView.cpp
+++ b/source/core/StarStringView.cpp
@@ -418,6 +418,14 @@ bool operator==(StringView s1, const char* s2) {
return s1.m_view.compare(s2) == 0;
}
+bool operator==(StringView s1, std::string const& s2) {
+ return s1.m_view.compare(s2) == 0;
+}
+
+bool operator==(StringView s1, String const& s2) {
+ return s1.m_view.compare(s2.utf8()) == 0;
+}
+
bool operator==(StringView s1, StringView s2) {
return s1.m_view == s2.m_view;
}