Skip to content

Commit 0904870

Browse files
tomix1024christophe-lunarg
authored andcommitted
Fix log2 func. qualifier
1 parent 4137519 commit 0904870

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

glm/detail/func_exponential.inl

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ namespace detail
1414
using std::log2;
1515
# else
1616
template<typename genType>
17-
genType log2(genType Value)
17+
GLM_FUNC_QUALIFIER genType log2(genType Value)
1818
{
1919
return std::log(Value) * static_cast<genType>(1.4426950408889634073599246810019);
2020
}

0 commit comments

Comments
 (0)