Skip to content

Commit

Permalink
update 2022-4-2
Browse files Browse the repository at this point in the history
  • Loading branch information
sdragonx committed Apr 1, 2022
1 parent 6fdb796 commit 008a126
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions glm/gtx/io.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ std::ostream& operator<<(std::ostream& out, const vec<N, T>& m)
return out;
}

template<typename T>
std::ostream& operator<<(std::ostream& out, const mat<4, 4, T>& m)
template<size_t CX, size_t CY, typename T>
std::ostream& operator<<(std::ostream& out, const mat<CX, CY, T>& m)
{
out << std::endl;
for(size_t x = 0; x < m.COLS; ++x){
Expand Down

0 comments on commit 008a126

Please sign in to comment.