mirror of
https://github.com/holub/mame
synced 2025-05-04 05:23:22 +03:00
appease MSVC (nw)
This commit is contained in:
parent
db566d4954
commit
f090feb8fe
@ -45,10 +45,10 @@ protected:
|
||||
virtual int32_t set(unsigned n, int32_t value) = 0;
|
||||
};
|
||||
|
||||
template <unsigned N> class output_helper_impl : public output_helper, protected output_finder<N> {
|
||||
template <unsigned N> class output_helper_impl : public output_helper, protected output_manager::output_finder<void, N> {
|
||||
public:
|
||||
output_helper_impl(device_t &device) : output_finder<N>(device, "vfd%u", 0U) { }
|
||||
virtual void resolve() override { output_finder<N>::resolve(); }
|
||||
output_helper_impl(device_t &device) : output_manager::output_finder<void, N>(device, "vfd%u", 0U) { }
|
||||
virtual void resolve() override { output_manager::output_finder<void, N>::resolve(); }
|
||||
virtual int32_t set(unsigned n, int32_t value) override { return this->operator[](n) = value; }
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user