ReactiveX / RxCpp

Reactive Extensions for C++
Apache License 2.0
3.05k stars 395 forks source link

Visual Studio 2015 IntelliSense with RXCPP #431

Closed vladsterz closed 6 years ago

vladsterz commented 6 years ago

IntelliSense is not working, Simple example auto ints = rx::observable<>::create<int>([](rx::subscriber<int> s) { s.on_next(1); s.on_next(2); s.on_completed(); }); "No instance of function template error ......" is present on the editor but the the code itself builds and runs normally.

kirkshoop commented 6 years ago

yes, visual studio currently uses the EDG compiler for intellisense. Since it is a completely different compiler it often disagrees with the visual studio compiler.