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 Jul 31, 2023
1 parent f6e3ae9 commit 1be928a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/modules/Bots
Submodule Bots updated from 74d14b to 189be4
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 1be928a

Please sign in to comment.