mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 19:17:35 +00:00
AK: Add deduction guides to Tuple
This commit is contained in:
parent
5bf37d758c
commit
b6e5c76427
1 changed files with 3 additions and 0 deletions
|
@ -213,6 +213,9 @@ private:
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
template<class... Args>
|
||||||
|
Tuple(Args... args) -> Tuple<Args...>;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
using AK::Tuple;
|
using AK::Tuple;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue