Skip to content

Commit 4b56360

Browse files
jeongseok-metameta-codesync[bot]
authored andcommitted
Fix modernize-return-braced-init-list issues
Reviewed By: TuurStuyck Differential Revision: D89098885 fbshipit-source-id: 24484707d4c998ba1b2d2e98bbad8f6ab0465313
1 parent 1bb8f62 commit 4b56360

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

axel/axel/math/test/ContinuousCollisionDetectionTest.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ struct LineData {
2727
bool hit;
2828

2929
[[nodiscard]] Eigen::Vector3d getVertexPosition() const {
30-
return Eigen::Vector3d(values[0] / values[1], values[2] / values[3], values[4] / values[5]);
30+
return {values[0] / values[1], values[2] / values[3], values[4] / values[5]};
3131
}
3232
};
3333

0 commit comments

Comments
 (0)