mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-11 03:56:16 +00:00
AK: Add deduction guides to Tuple
This commit is contained in:
parent
5bf37d758c
commit
b6e5c76427
Notes:
sideshowbarker
2024-07-18 17:49:54 +09:00
Author: https://github.com/alimpfard
Commit: b6e5c76427
Pull-request: https://github.com/SerenityOS/serenity/pull/7255
Reviewed-by: https://github.com/linusg
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