Skip to content

Commit

Permalink
Fix log2 func. qualifier
Browse files Browse the repository at this point in the history
  • Loading branch information
tomix1024 authored and christophe-lunarg committed Apr 8, 2024
1 parent 4137519 commit 0904870
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion glm/detail/func_exponential.inl
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ namespace detail
using std::log2;
# else
template<typename genType>
genType log2(genType Value)
GLM_FUNC_QUALIFIER genType log2(genType Value)
{
return std::log(Value) * static_cast<genType>(1.4426950408889634073599246810019);
}
Expand Down

0 comments on commit 0904870

Please sign in to comment.