diff --git a/AK/StdLibExtras.h b/AK/StdLibExtras.h index 0e673d81c1..e6b58ebfee 100644 --- a/AK/StdLibExtras.h +++ b/AK/StdLibExtras.h @@ -276,16 +276,12 @@ struct RemovePointer { template struct IsSame { - enum { - value = 0 - }; + static constexpr bool value = false; }; template struct IsSame { - enum { - value = 1 - }; + static constexpr bool value = true; }; template