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 1d03e69 commit d3ad097Copy full SHA for d3ad097
src/ReactiveArduinoCore.h
@@ -302,7 +302,7 @@ auto Observable<T>::Distinct() -> OperatorDistinct<T>&
302
template <typename T>
303
auto Observable<T>::DistinctUntilChanged() -> OperatorDistinctUntilChanged<T>&
304
{
305
- auto newOp = new DistinctUntilChanged<T>();
+ auto newOp = new OperatorDistinctUntilChanged<T>();
306
Compound(*this, *newOp);
307
return *newOp;
308
}
0 commit comments