Type: LanguageService
Describe the bug
- OS and Version: Linux x64 5.4.0-56-generic
- VS Code Version: 1.51.1
- C/C++ Extension Version: 1.1.3
Steps to reproduce
I have code:
#include <range/v3/algorithm/all_of.hpp>
......
if (ranges::all_of(v, [](bool val) { return val; })) {
publish();
}
And I get message:
no instance of overloaded function "ranges::all_of_fn::operator()" matches the argument list -- argument types are: (std::vector<bool, std::allocator>, lambda []bool (bool val)->bool) -- object type is: const ranges::all_of_fn
With another ranges same problem about "no instance".
How I can avoid this problem?
Type: LanguageService
Describe the bug
Steps to reproduce
I have code:
And I get message:
With another ranges same problem about "no instance".
How I can avoid this problem?