8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57a87ca commit 960c8f5Copy full SHA for 960c8f5
cores/esp8266/MultiDelegate.h
@@ -241,14 +241,15 @@ namespace delegate
241
{
242
return current == rhs.current;
243
}
244
- bool operator!=(const iterator& rhs) const {
+ bool operator!=(const iterator& rhs) const
245
+ {
246
return !operator==(rhs);
247
248
Delegate& operator*() const
249
250
return current->mDelegate;
251
- Delegate* const operator->() const
252
+ Delegate* operator->() const
253
254
return ¤t->mDelegate;
255
@@ -271,10 +272,12 @@ namespace delegate
271
272
273
};
274
- iterator begin() {
275
+ iterator begin()
276
277
return iterator(*this);
278
- iterator end() const {
279
+ iterator end() const
280
281
return iterator();
282
283
0 commit comments