Improve Gromacs portability
[alexxy/gromacs.git] / src / gromacs / onlinehelp / helpwritercontext.cpp
index 649ab7849d96ac0541265b9f2300895db6147576..2a30686f39ccdd8077f28cec5799da392da6db6c 100644 (file)
@@ -357,7 +357,7 @@ class WrapperToVector : public WrapperInterface
 std::string toUpperCase(const std::string &text)
 {
     std::string result(text);
-    transform(result.begin(), result.end(), result.begin(), toupper);
+    std::transform(result.begin(), result.end(), result.begin(), toupper);
     return result;
 }