Skip to content

Commit

Permalink
Fix a compile error
Browse files Browse the repository at this point in the history
  • Loading branch information
ueshita committed May 4, 2024
1 parent 3288427 commit 587f0b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dev/Cpp/Effekseer/Effekseer/SIMD/Vec3f.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ struct Vec3f
Vec3f(const Vector3D& vec);
Vec3f(const vector3d& vec);

Vec3f::Vec3f(const std::array<float, 3>& vec)
Vec3f(const std::array<float, 3>& vec)
: s(vec[0], vec[1], vec[2], 0.0f)
{
}
Expand Down

0 comments on commit 587f0b0

Please sign in to comment.