mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 06:27:45 +00:00
AK: Define MakeSigned<...>::Type as void in the base struct
This was probably forgotten in the last rewrite, this would make IsIntegeral<T> not work for floating points.
This commit is contained in:
parent
cf8b75c2e5
commit
59e01e2813
1 changed files with 1 additions and 0 deletions
|
@ -265,6 +265,7 @@ using MakeUnsigned = typename __MakeUnsigned<T>::Type;
|
|||
|
||||
template<typename T>
|
||||
struct __MakeSigned {
|
||||
using Type = void;
|
||||
};
|
||||
template<>
|
||||
struct __MakeSigned<signed char> {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue