aboutsummaryrefslogtreecommitdiff
path: root/src/common/Utilities/Util.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/Utilities/Util.cpp')
-rw-r--r--src/common/Utilities/Util.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/common/Utilities/Util.cpp b/src/common/Utilities/Util.cpp
index 0d65f1f7f81..511e4b99684 100644
--- a/src/common/Utilities/Util.cpp
+++ b/src/common/Utilities/Util.cpp
@@ -840,11 +840,6 @@ bool StringEqualI(std::string_view str1, std::string_view str2)
});
}
-bool StringStartsWith(std::string_view haystack, std::string_view needle)
-{
- return (haystack.substr(0, needle.length()) == needle);
-}
-
bool StringContainsStringI(std::string_view haystack, std::string_view needle)
{
return haystack.end() !=