From bd19102eb7d0ccaed312951f8da42c6ee30208c9 Mon Sep 17 00:00:00 2001 From: Diavolo Date: Sun, 10 Apr 2022 15:12:01 +0200 Subject: [PATCH] FIx header --- src/Utils/String.hpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/Utils/String.hpp b/src/Utils/String.hpp index 11c9130a..51012e8a 100644 --- a/src/Utils/String.hpp +++ b/src/Utils/String.hpp @@ -77,12 +77,10 @@ namespace Utils int IsSpace(int c); std::string ToLower(std::string text); std::string ToUpper(std::string text); - bool EndsWith(const std::string& haystack, const std::string& needle); std::vector Split(const std::string& str, const char delim); void Replace(std::string& string, const std::string& find, const std::string& replace); - bool EndsWith(const std::string& haystack, const std::string& needle); bool StartsWith(const std::string& haystack, const std::string& needle); - std::vector Split(const std::string& str, const char delim); + bool EndsWith(const std::string& haystack, const std::string& needle); std::string& LTrim(std::string& str); std::string& RTrim(std::string& str);