We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 414cbb8 commit 0f0caffCopy full SHA for 0f0caff
1 file changed
CCDB/src/CcdbApi.cxx
@@ -57,8 +57,8 @@ std::string sanitizeObjectName(const std::string& objectName)
57
{
58
string tmpObjectName = objectName;
59
tmpObjectName.erase(std::remove_if(tmpObjectName.begin(), tmpObjectName.end(),
60
- []( auto const& c ) -> bool {return (!std::isalnum(c) && c!='_' && c!='/'); } ),
61
- tmpObjectName.end());
+ [](auto const& c) -> bool { return (!std::isalnum(c) && c != '_' && c != '/'); }),
+ tmpObjectName.end());
62
return tmpObjectName;
63
}
64
0 commit comments