Skip to content

Commit

Permalink
Fix bots linux compile
Browse files Browse the repository at this point in the history
-Update bots submodule
  • Loading branch information
Niam5 committed Sep 20, 2023
1 parent 04aab81 commit 9f7cc3d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/shared/Util/Util.h
Original file line number Diff line number Diff line change
Expand Up @@ -310,12 +310,12 @@ inline bool isEastAsianString(const std::wstring& wstr, bool numericOrSpace)

inline void strToUpper(std::string& str)
{
std::transform(str.begin(), str.end(), str.begin(), toupper);
std::transform(str.begin(), str.end(), str.begin(), ::toupper);
}

inline void strToLower(std::string& str)
{
std::transform(str.begin(), str.end(), str.begin(), tolower);
std::transform(str.begin(), str.end(), str.begin(), ::tolower);
}

inline wchar_t wcharToUpper(wchar_t wchar)
Expand Down

0 comments on commit 9f7cc3d

Please sign in to comment.