Closed hoffis closed 9 years ago
after running snippet below memory increase infinitely
#include <rxcpp/rx.hpp> #include <iostream> int main(int argc,char** argv) { rxcpp::sources::range(1,10) .repeat() .subscribe([](auto i) { std::cout << i << std::endl; }); return 0; }
Thanks! This is fixed.
after running snippet below memory increase infinitely