Skip to content

Commit

Permalink
Fixed to_string when used with GLM_FORCE_INLINE #506
Browse files Browse the repository at this point in the history
  • Loading branch information
Groovounet committed May 18, 2016
1 parent 306b409 commit 7921515
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion glm/gtx/string_cast.inl
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,7 @@ namespace detail
}//namespace detail

template <template <typename, precision> class matType, typename T, precision P>
GLM_FUNC_DECL std::string to_string(matType<T, P> const & x)
GLM_FUNC_QUALIFIER std::string to_string(matType<T, P> const & x)
{
return detail::compute_to_string<matType, T, P>::call(x);
}
Expand Down
1 change: 1 addition & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ glm::mat4 camera(float Translate, glm::vec2 const & Rotate)
- Fixed uaddCarry warning #497
- Fixed roundPowerOfTwo and floorPowerOfTwo #503
- Fixed Visual C++ SIMD instruction set automatic detection in 64 bits
- Fixed to_string when used with GLM_FORCE_INLINE #506
#### [GLM 0.9.7.4](https://github.com/g-truc/glm/releases/tag/0.9.7.4) - 2016-03-19
##### Fixes:
Expand Down

0 comments on commit 7921515

Please sign in to comment.