-
-
Notifications
You must be signed in to change notification settings - Fork 6.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Visual Studio 2015 IntelliTrace problems #729
Comments
I had this issue once, IIRC it disappeared after I updated to VS2015 U3 |
Thanks, I will try it now. |
@theodelrieu Have finished install update 3 for vs2015, it seems not work for me. |
I looked it up, and it seems I just disabled Intellisense and bought a Visual Assist license. |
Okay, I prefer the Intellisense so seems I need to get used to it. :) |
I am not sure what I can do to fix this issue. |
It only happens on std::string, if I change it using c_str(), then the underline gone. |
It seems the parser MSVC uses in the editor has a problem. :-S |
Maybe someone has an idea - otherwise I shall close this issue. |
Intellisense uses a different compiler which doesn't always support the same things as the regular compiler. Unfortunately, these errors are really hard to fix. |
It's fine to close it since the workaround doesn't take time. :) |
Thanks for checking back! |
using json = nlohmann::json; json j; std::string json_string; j = json::parse(json_string);
Visual Studio 2015 will show red line under
json::parse
:it shows following error message:
I can successfully compile it but it is a little bit annoying. Could it be avoided?
The text was updated successfully, but these errors were encountered: