X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/b92547a5de3a3fb4f14a2bea4a4e776b8da3cb5c..d3ea2ff01c51df0df95cd23157267048e2c2fdcd:/Server/src/string.cpp?ds=inline diff --git a/Server/src/string.cpp b/Server/src/string.cpp index 15e783c..cd2eaad 100644 --- a/Server/src/string.cpp +++ b/Server/src/string.cpp @@ -54,12 +54,12 @@ String& String::trim(const String& clist) { } String& String::to_lower(void) { - transform(begin(), end(), begin(), tolower); + transform(begin(), end(), begin(), ::tolower); return *this; } String& String::to_upper(void) { - transform(begin(), end(), begin(), toupper); + transform(begin(), end(), begin(), ::toupper); return *this; }