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.
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.
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.