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;
|
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:
|
public:
|
||||||
output_helper_impl(device_t &device) : output_finder<N>(device, "vfd%u", 0U) { }
|
output_helper_impl(device_t &device) : output_manager::output_finder<void, N>(device, "vfd%u", 0U) { }
|
||||||
virtual void resolve() override { output_finder<N>::resolve(); }
|
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; }
|
virtual int32_t set(unsigned n, int32_t value) override { return this->operator[](n) = value; }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user