Skip to content

Commit ea6203a

Browse files
committed
Fix clang-tidy warning
1 parent 0139921 commit ea6203a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/version.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,7 @@ std::string openPMD::getStandardDefault()
4747
standard << OPENPMD_STANDARD_DEFAULT_MAJOR << "."
4848
<< OPENPMD_STANDARD_DEFAULT_MINOR << "."
4949
<< OPENPMD_STANDARD_DEFAULT_PATCH;
50-
std::string const standardstr = standard.str();
51-
return standardstr;
50+
return standard.str();
5251
}
5352

5453
std::string openPMD::getStandardMinimum()

0 commit comments

Comments
 (0)