mirror of
https://github.com/MaSzyna-EU07/maszyna.git
synced 2026-07-18 03:09:18 +02:00
Merge branch 'tmj-dev' into milek-dev
This commit is contained in:
@@ -29,7 +29,7 @@ Copyright (C) 2007-2014 Maciej Cierniak
|
||||
|
||||
bool DebugModeFlag = false;
|
||||
bool FreeFlyModeFlag = false;
|
||||
bool EditorModeFlag = true;
|
||||
bool EditorModeFlag = false;
|
||||
bool DebugCameraFlag = false;
|
||||
|
||||
double Max0R(double x1, double x2)
|
||||
@@ -257,18 +257,24 @@ int stol_def(const std::string &str, const int &DefaultValue) {
|
||||
return result;
|
||||
}
|
||||
|
||||
std::string ToLower(std::string const &text)
|
||||
{
|
||||
std::string lowercase( text );
|
||||
std::transform(text.begin(), text.end(), lowercase.begin(), ::tolower);
|
||||
std::string ToLower(std::string const &text) {
|
||||
|
||||
auto lowercase { text };
|
||||
std::transform(
|
||||
std::begin( text ), std::end( text ),
|
||||
std::begin( lowercase ),
|
||||
[]( unsigned char c ) { return std::tolower( c ); } );
|
||||
return lowercase;
|
||||
}
|
||||
|
||||
std::string ToUpper(std::string const &text)
|
||||
{
|
||||
std::string uppercase( text );
|
||||
std::transform(text.begin(), text.end(), uppercase.begin(), ::toupper);
|
||||
return uppercase;
|
||||
std::string ToUpper(std::string const &text) {
|
||||
|
||||
auto uppercase { text };
|
||||
std::transform(
|
||||
std::begin( text ), std::end( text ),
|
||||
std::begin( uppercase ),
|
||||
[]( unsigned char c ) { return std::toupper( c ); } );
|
||||
return uppercase;
|
||||
}
|
||||
|
||||
// replaces polish letters with basic ascii
|
||||
|
||||
Reference in New Issue
Block a user