1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 18:17:44 +00:00

AK: Add deduction guides to Tuple

This commit is contained in:
Ali Mohammad Pur 2021-05-18 18:44:03 +04:30 committed by Linus Groh
parent 5bf37d758c
commit b6e5c76427

View file

@ -213,6 +213,9 @@ private:
}
};
template<class... Args>
Tuple(Args... args) -> Tuple<Args...>;
}
using AK::Tuple;