mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +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
Notes:
sideshowbarker
2024-07-18 17:23:12 +09:00
Author: https://github.com/alimpfard Commit: https://github.com/SerenityOS/serenity/commit/59e01e28131 Pull-request: https://github.com/SerenityOS/serenity/pull/7395 Reviewed-by: https://github.com/linusg
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…
Reference in a new issue