Typo / style

This commit is contained in:
Christophe Riccio
2011-09-25 05:09:34 +01:00
parent ca88ff50dd
commit 97e07f6660
2 changed files with 23 additions and 23 deletions

View File

@@ -156,13 +156,13 @@ namespace detail
// floor
template <>
GLM_FUNC_QUALIFIER detail::thalf floor<detail::thalf>(detail::thalf const& x)
GLM_FUNC_QUALIFIER detail::thalf floor<detail::thalf>(detail::thalf const & x)
{
return detail::thalf(::std::floor(x.toFloat()));
}
template <typename genType>
GLM_FUNC_QUALIFIER genType floor(genType const& x)
GLM_FUNC_QUALIFIER genType floor(genType const & x)
{
GLM_STATIC_ASSERT(detail::type<genType>::is_float, "'floor' only accept floating-point inputs");