mirror of
https://github.com/g-truc/glm.git
synced 2025-04-07 22:40:17 +00:00
apply static_cast before calling mask
in bitfieldInsert
This commit is contained in:
parent
efec5db081
commit
6486113379
1 changed files with 1 additions and 1 deletions
|
@ -270,7 +270,7 @@ namespace detail
|
|||
{
|
||||
GLM_STATIC_ASSERT(std::numeric_limits<T>::is_integer, "'bitfieldInsert' only accept integer values");
|
||||
|
||||
T const Mask = static_cast<T>(detail::mask(Bits) << Offset);
|
||||
T const Mask = detail::mask(static_cast<T>(Bits)) << Offset;
|
||||
return (Base & ~Mask) | ((Insert << static_cast<T>(Offset)) & Mask);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue