8000 Resolve g++ 9's c++17 deprecation warnings. · dok-net/arduino-esp8266@68c67a0 · GitHub
[go: up one dir, main page]

Skip to content

Commit 68c67a0

Browse files
committed
Resolve g++ 9's c++17 deprecation warnings.
1 parent 88f1952 commit 68c67a0

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
@@ -1789,11 +1789,13 @@ template<typename R, typename A, typename... P> class Delegate<R(P...), A> : pub
17891789
{
17901790
public:
17911791
using delegate::detail::Delegate<R, A, P...>::Delegate;
1792+
using delegate::detail::Delegate<R, A, P...>::operator=;
17921793
};
17931794
template<typename R, typename... P> class Delegate<R(P...)> : public delegate::detail::Delegate<R, void, P...>
17941795
{
17951796
public:
17961797
using delegate::detail::Delegate<R, void, P...>::Delegate;
1798+
using delegate::detail::Delegate<R, void, P...>::operator=;
17971799
};
17981800

17991801
#endif // __Delegate_h

0 commit comments

Comments
 (0)
0