Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion impl/vector3d.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -1052,7 +1052,7 @@ namespace SaturnMath::Types
* @param shiftAmount The number of positions to shift.
* @return The resulting Vec3 object.
*/
constexpr Vector3D operator<<(const size_t& shiftAmount)
constexpr Vector3D operator<<(const size_t& shiftAmount) const
{
return Vector3D(X << shiftAmount, Y << shiftAmount, Z << shiftAmount);
}
Expand Down