mirror of
https://github.com/holub/mame
synced 2025-04-23 08:49:55 +03:00
fix clang build (nw)
This commit is contained in:
parent
6c61aa61d2
commit
477081964c
@ -429,7 +429,11 @@ class input_seq
|
||||
{
|
||||
public:
|
||||
// construction/destruction
|
||||
template <typename... T> constexpr input_seq(input_code code_0 = end_code, T... code_n) noexcept
|
||||
constexpr input_seq() noexcept
|
||||
{
|
||||
reset();
|
||||
}
|
||||
template <typename... T> constexpr input_seq(input_code code_0, T... code_n) noexcept
|
||||
{
|
||||
set(code_0, code_n...);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user