diff --git a/include/Common.h b/include/Common.h index 217d23c..879209e 100644 --- a/include/Common.h +++ b/include/Common.h @@ -131,6 +131,7 @@ private: }; void SplitString(std::string const& str, const char delim, std::vector& out); +std::string LowerString(std::string str); std::string ThreadName(bool DebugModeOverride = false); void RegisterThread(const std::string& str); diff --git a/src/Common.cpp b/src/Common.cpp index d135569..1785b9e 100644 --- a/src/Common.cpp +++ b/src/Common.cpp @@ -384,6 +384,13 @@ void SplitString(const std::string& str, const char delim, std::vector