]> git.stg.codes - stg.git/commitdiff
Fixed stupid bug in case conversion functions.
authorMaxim Mamontov <faust.madf@gmail.com>
Sat, 10 Aug 2013 15:54:50 +0000 (18:54 +0300)
committerMaxim Mamontov <faust.madf@gmail.com>
Sat, 10 Aug 2013 15:54:50 +0000 (18:54 +0300)
stglibs/common.lib/common.cpp
stglibs/common.lib/include/stg/common.h

index c02f675c943c9c93abd6cbb9407eda1d1d84ea32..763df5327976b77c141830d310def3999d8b2917 100644 (file)
@@ -824,7 +824,7 @@ std::string ToLower(const std::string & value)
     std::string res;
     for (std::string::size_type pos = 0; pos < value.length(); ++pos)
         res += tolower(value[pos]);
-    return value;
+    return res;
 }
 //---------------------------------------------------------------------------
 std::string ToUpper(const std::string & value)
@@ -832,7 +832,7 @@ std::string ToUpper(const std::string & value)
     std::string res;
     for (std::string::size_type pos = 0; pos < value.length(); ++pos)
         res += toupper(value[pos]);
-    return value;
+    return res;
 }
 //---------------------------------------------------------------------------
 #ifdef WIN32
index 3b1ea27541020c684d0e79ee88374d1dae704126..6c71289b1efc9bcd5814d52f59e40fc03bf8df8b 100644 (file)
@@ -155,7 +155,7 @@ int str2x(const std::string & str, varT & x)
         x += str[i] - '0';
     }
 
-    x*= minus;
+    x *= minus;
 
     return 0;
 }