ReactiveX / RxCpp

Reactive Extensions for C++
Apache License 2.0
3.03k stars 390 forks source link

Changed values_from template parameter to not cast. #521

Closed tinkerbeast closed 4 years ago

tinkerbeast commented 4 years ago

The template has several uses as values_from<int, sizeof...(ParamN)>::type(). This causes a cast issue as the second parameter by default is an int whereas we are passing a size_t.

kirkshoop commented 4 years ago

thank you!