Skip to content

Commit 0f0caff

Browse files
committed
format
1 parent 414cbb8 commit 0f0caff

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

CCDB/src/CcdbApi.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ std::string sanitizeObjectName(const std::string& objectName)
5757
{
5858
string tmpObjectName = objectName;
5959
tmpObjectName.erase(std::remove_if(tmpObjectName.begin(), tmpObjectName.end(),
60-
[]( auto const& c ) -> bool {return (!std::isalnum(c) && c!='_' && c!='/'); } ),
61-
tmpObjectName.end());
60+
[](auto const& c) -> bool { return (!std::isalnum(c) && c != '_' && c != '/'); }),
61+
tmpObjectName.end());
6262
return tmpObjectName;
6363
}
6464

0 commit comments

Comments
 (0)