diff --git a/AK/TypeList.h b/AK/TypeList.h index d5ee78db1b..132f2a01ba 100644 --- a/AK/TypeList.h +++ b/AK/TypeList.h @@ -62,7 +62,7 @@ struct TypeWrapper { template constexpr void for_each_type_impl(F&& f, IndexSequence) { - (forward(f)(TypeWrapper> {}), ...); + (forward(f)(TypeWrapper> {}), ...); } template @@ -74,7 +74,7 @@ constexpr void for_each_type(F&& f) template constexpr void for_each_type_zipped_impl(F&& f, IndexSequence) { - (forward(f)(TypeWrapper> {}, TypeWrapper> {}), ...); + (forward(f)(TypeWrapper> {}, TypeWrapper> {}), ...); } template