Skip to content

Commit

Permalink
tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
ssdetlab committed Jan 22, 2025
1 parent 9804191 commit da406de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Core/src/Geometry/CuboidVolumeBounds.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ CuboidVolumeBounds::CuboidVolumeBounds(const std::array<double, eSize>& values)
}

CuboidVolumeBounds::CuboidVolumeBounds(
std::initializer_list<std::pair<BoundValues, double>> keyValues) {
m_values = {-1, -1, -1};
std::initializer_list<std::pair<BoundValues, double>> keyValues)
: m_values({-1, -1, -1}) {
for (const auto& [key, value] : keyValues) {
m_values[key] = value;
}
Expand Down

0 comments on commit da406de

Please sign in to comment.