diff --git a/AK/StdLibExtras.h b/AK/StdLibExtras.h index ff80340bd1..7dea07a6e1 100644 --- a/AK/StdLibExtras.h +++ b/AK/StdLibExtras.h @@ -320,8 +320,19 @@ struct IsSame { }; }; +template +struct Conditional { + typedef TrueType Type; +}; + +template +struct Conditional { + typedef FalseType Type; +}; + } +using AK::Conditional; using AK::ceil_div; using AK::clamp; using AK::exchange;