Skip to content

Commit

Permalink
Fix clang-tidy warning
Browse files Browse the repository at this point in the history
  • Loading branch information
franzpoeschel committed Feb 28, 2024
1 parent 1f41dd1 commit 917d6ab
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/version.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,7 @@ std::string openPMD::getStandardDefault()
standard << OPENPMD_STANDARD_DEFAULT_MAJOR << "."
<< OPENPMD_STANDARD_DEFAULT_MINOR << "."
<< OPENPMD_STANDARD_DEFAULT_PATCH;
std::string const standardstr = standard.str();
return standardstr;
return standard.str();
}

std::string openPMD::getStandardMinimum()
Expand Down

0 comments on commit 917d6ab

Please sign in to comment.