mirror of
https://github.com/g-truc/glm.git
synced 2025-04-05 05:25:02 +00:00
Merge fcb626a122
into 33b4a621a6
This commit is contained in:
commit
fa5a2dc3ae
2 changed files with 7 additions and 2 deletions
|
@ -192,6 +192,9 @@ namespace detail
|
|||
return vec<L, uint, Q>(Value64 % (Max32 + static_cast<detail::uint64>(1)));
|
||||
}
|
||||
|
||||
#pragma GCC diagnostic push
|
||||
#pragma GCC diagnostic ignored "-Wduplicated-branches"
|
||||
|
||||
// usubBorrow
|
||||
GLM_FUNC_QUALIFIER uint usubBorrow(uint const& x, uint const& y, uint & Borrow)
|
||||
{
|
||||
|
@ -202,6 +205,8 @@ namespace detail
|
|||
return static_cast<uint>((static_cast<detail::int64>(1) << static_cast<detail::int64>(32)) + (static_cast<detail::int64>(y) - static_cast<detail::int64>(x)));
|
||||
}
|
||||
|
||||
#pragma GCC diagnostic pop
|
||||
|
||||
template<length_t L, qualifier Q>
|
||||
GLM_FUNC_QUALIFIER vec<L, uint, Q> usubBorrow(vec<L, uint, Q> const& x, vec<L, uint, Q> const& y, vec<L, uint, Q>& Borrow)
|
||||
{
|
||||
|
|
|
@ -85,7 +85,7 @@ namespace detail
|
|||
struct storage
|
||||
{
|
||||
typedef struct type {
|
||||
T data[L];
|
||||
T data[static_cast<size_t>(L)];
|
||||
} type;
|
||||
};
|
||||
|
||||
|
@ -94,7 +94,7 @@ namespace detail
|
|||
struct storage<L, T, true>
|
||||
{
|
||||
typedef struct alignas(L * sizeof(T)) type {
|
||||
T data[L];
|
||||
T data[static_cast<size_t>(L)];
|
||||
} type;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue