Skip to content

Commit

Permalink
Update library/public/types.h
Browse files Browse the repository at this point in the history
Co-authored-by: snoyer <[email protected]>
  • Loading branch information
Yogesh9000 and snoyer authored Oct 13, 2024
1 parent 137de48 commit 12ddb7b
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions library/public/types.h
Original file line number Diff line number Diff line change
Expand Up @@ -215,11 +215,7 @@ struct F3D_EXPORT vector3_t

inline std::ostream& operator<<(std::ostream& os, const f3d::vector3_t& vec)

Check warning on line 216 in library/public/types.h

View check run for this annotation

Codecov / codecov/patch

library/public/types.h#L216

Added line #L216 was not covered by tests
{
for (int i = 0; i < 3; ++i)
{
os << (i == 0 ? ", " : "{ ") << vec[i];
}
os << " }";
os << "{ " << vec[0] << ", " << vec[1] << ", " << vec[2] << " }";
return os;

Check warning on line 219 in library/public/types.h

View check run for this annotation

Codecov / codecov/patch

library/public/types.h#L218-L219

Added lines #L218 - L219 were not covered by tests
}

Expand Down

0 comments on commit 12ddb7b

Please sign in to comment.