Skip to content

Commit

Permalink
-Fix to make lower actually lower.
Browse files Browse the repository at this point in the history
  • Loading branch information
mostlikely4r authored and celguar committed Mar 15, 2023
1 parent 6222b51 commit d866d44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/shared/Util/Util.h
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ inline void strToUpper(std::string& str)

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

inline wchar_t wcharToUpper(wchar_t wchar)
Expand Down

0 comments on commit d866d44

Please sign in to comment.