- renderInfo
- fix: no guardava el preset actual
This commit is contained in:
10
source/utils/utils.cpp
Normal file
10
source/utils/utils.cpp
Normal file
@@ -0,0 +1,10 @@
|
||||
#include "utils/utils.hpp"
|
||||
|
||||
#include <algorithm>
|
||||
#include <string>
|
||||
|
||||
auto toLower(const std::string& str) -> std::string {
|
||||
std::string lower = str;
|
||||
std::ranges::transform(lower, lower.begin(), ::tolower);
|
||||
return lower;
|
||||
}
|
||||
Reference in New Issue
Block a user