mirror of
https://github.com/holub/mame
synced 2025-07-04 17:38:08 +03:00
fix build with clang 9.0.0 on windows
../../../../../src/osd/modules/input/input_winhybrid.cpp:107:16: error: suggest braces around initialization of subobject [-Werror,-Wmissing-braces] : m_variant({0})
This commit is contained in:
parent
bfa7808975
commit
92bd148e05
@ -104,8 +104,8 @@ private:
|
|||||||
|
|
||||||
public:
|
public:
|
||||||
variant_wrapper()
|
variant_wrapper()
|
||||||
: m_variant({0})
|
|
||||||
{
|
{
|
||||||
|
VariantInit(&m_variant);
|
||||||
}
|
}
|
||||||
|
|
||||||
~variant_wrapper()
|
~variant_wrapper()
|
||||||
|
Loading…
Reference in New Issue
Block a user