8000 using operator= is required to suppress auto generation. · dok-net/arduino-esp8266@e6e60e7 · GitHub
[go: up one dir, main page]

Skip to content

Commit e6e60e7

Browse files
committed
using operator= is required to suppress auto generation.
1 parent 18f497e commit e6e60e7

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

cores/esp8266/Delegate.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1870,11 +1870,13 @@ template<typename R, typename A, typename... P> class Delegate<R(P...), A> : pub
18701870
{
18711871
public:
18721872
using detail::Delegate<R, A, P...>::Delegate;
1873+
using detail::Delegate<R, A, P...>::operator=;
18731874
};
18741875
template<typename R, typename... P> class Delegate<R(P...)> : public detail::Delegate<R, void, P...>
18751876
{
18761877
public:
18771878
using detail::Delegate<R, void, P...>::Delegate;
1879+
using detail::Delegate<R, void, P...>::operator=;
18781880
};
18791881

18801882
#endif // __Delegate_h

0 commit comments

Comments
 (0)
0