tuple: fixed typo

This commit is contained in:
skypjack
2026-01-23 18:46:30 +01:00
parent c6235fc047
commit 4a2213ef4e

View File

@@ -83,7 +83,7 @@ struct forward_apply: private Func {
* @tparam Func Type of underlying invocable object.
*/
template<typename Func>
forward_apply(Func) -> forward_apply<std::remove_reference_t<std::remove_const_t<Func>>>;
forward_apply(Func) -> forward_apply<std::remove_cvref_t<Func>>;
} // namespace entt