Skip to content

Commit

Permalink
Fixed typo quaternio -> quaternion in Log.h (TheCherno#483)
Browse files Browse the repository at this point in the history
  • Loading branch information
CybernetHacker14 authored Sep 18, 2021
1 parent 0f8fa94 commit f627b9c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Hazel/src/Hazel/Core/Log.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ inline OStream& operator<<(OStream& os, const glm::mat<C, R, T, Q>& matrix)
}

template<typename OStream, typename T, glm::qualifier Q>
inline OStream& operator<<(OStream& os, glm::qua<T, Q> quaternio)
inline OStream& operator<<(OStream& os, glm::qua<T, Q> quaternion)
{
return os << glm::to_string(quaternio);
return os << glm::to_string(quaternion);
}

// Core log macros
Expand Down

0 comments on commit f627b9c

Please sign in to comment.