mirror of
https://github.com/g-truc/glm.git
synced 2024-11-10 12:41:54 +00:00
Fixed missing function definision qualifier
This commit is contained in:
parent
7e8942759e
commit
97cedefcbf
@ -197,7 +197,7 @@ namespace glm
|
|||||||
|
|
||||||
// imulExtended
|
// imulExtended
|
||||||
template <typename genIType>
|
template <typename genIType>
|
||||||
void imulExtended
|
GLM_FUNC_QUALIFIER void imulExtended
|
||||||
(
|
(
|
||||||
genIType const & x,
|
genIType const & x,
|
||||||
genIType const & y,
|
genIType const & y,
|
||||||
@ -259,7 +259,7 @@ namespace glm
|
|||||||
|
|
||||||
// bitfieldExtract
|
// bitfieldExtract
|
||||||
template <typename genIUType>
|
template <typename genIUType>
|
||||||
genIUType bitfieldExtract
|
GLM_FUNC_QUALIFIER genIUType bitfieldExtract
|
||||||
(
|
(
|
||||||
genIUType const & Value,
|
genIUType const & Value,
|
||||||
int const & Offset,
|
int const & Offset,
|
||||||
@ -441,7 +441,7 @@ namespace glm
|
|||||||
|
|
||||||
// bitCount
|
// bitCount
|
||||||
template <typename genIUType>
|
template <typename genIUType>
|
||||||
int bitCount(genIUType const & Value)
|
GLM_FUNC_QUALIFIER int bitCount(genIUType const & Value)
|
||||||
{
|
{
|
||||||
GLM_STATIC_ASSERT(std::numeric_limits<genIUType>::is_integer, "'bitCount' only accept integer values");
|
GLM_STATIC_ASSERT(std::numeric_limits<genIUType>::is_integer, "'bitCount' only accept integer values");
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user