summaryrefslogtreecommitdiff
path: root/source/core/slang-string.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/core/slang-string.h')
-rw-r--r--source/core/slang-string.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/core/slang-string.h b/source/core/slang-string.h
index 59d441b76..69ca7e2c3 100644
--- a/source/core/slang-string.h
+++ b/source/core/slang-string.h
@@ -154,6 +154,7 @@ namespace Slang
/// True if contents is a single char of c
SLANG_FORCE_INLINE bool isChar(char c) const { return getLength() == 1 && m_begin[0] == c; }
+ bool startsWithCaseInsensitive(UnownedStringSlice const& other) const;
bool startsWith(UnownedStringSlice const& other) const;
bool startsWith(char const* str) const;