X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FConfig%2FConfig_Common.cpp;h=a4b68bbf829ea9cdeeb64a629dc04bb377d82033;hb=06e7f5859095193fc7f498bd89a7d28009794f53;hp=efa0efeb99726fb408231d61b24ac289953f1c37;hpb=50a8df0c6a66da8067b16155e5ae39f8f26a7ebc;p=modules%2Fshaper.git diff --git a/src/Config/Config_Common.cpp b/src/Config/Config_Common.cpp index efa0efeb9..a4b68bbf8 100644 --- a/src/Config/Config_Common.cpp +++ b/src/Config/Config_Common.cpp @@ -1,4 +1,4 @@ -// Copyright (C) 2014-2020 CEA/DEN, EDF R&D +// Copyright (C) 2014-2023 CEA, EDF // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public @@ -208,7 +208,7 @@ bool getParametersInfo(xmlNodePtr theNode, std::string& outPropertyId, std::stringstream aPropStringStream(aPropString); char COMMA_DELIM = ','; std::string aParameter; - while (std::getline(aPropStringStream, aParameter, ',')) { + while (std::getline(aPropStringStream, aParameter, COMMA_DELIM)) { outValidatorParameters.push_back(aParameter); } } @@ -285,6 +285,7 @@ bool getBooleanAttribute(xmlNodePtr theNode, const char* theAttributeName, bool CONFIG_EXPORT std::string normalize(const std::string& theString) { std::string result = theString; - std::transform(result.begin(), result.end(), result.begin(), ::tolower); + std::transform(result.begin(), result.end(), result.begin(), + [](char c) { return static_cast(::tolower(c)); }); return result; }