Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 15be5f6

Browse filesBrowse files
committed
using operator= is required to suppress auto generation.
1 parent 68482f8 commit 15be5f6
Copy full SHA for 15be5f6

File tree

Expand file treeCollapse file tree

1 file changed

+2
-0
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+2
-0
lines changed

‎cores/esp8266/Delegate.h

Copy file name to clipboardExpand all lines: cores/esp8266/Delegate.h
+2Lines 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)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.