Is it bug ? #10192
Unanswered
KaungZawHtet
asked this question in
Q&A
Is it bug ?
#10192
Replies: 3 comments 5 replies
|
The flame icon in the status bar should show the status, although it's possible that "Updating IntelliSense" could block that from appearing as well. Do you see a "Running clang-tidy" status indicator when you hover over the flame icon? Are you able to click it and choose cancel and then manually re-run code analysis to get it to update? Also, if you can check if clang-tidy is running (as a process) then that would indicate if it's doing work or if there's an internal issue causing it not to run when it should. Are using the C_Cpp.codeAnalysis.runAutomatically and C_Cpp.codeAnalysis.clangTidy.enabled both set to true or are you manually invoking it? |
0 replies
|
This is {
"configurations": [
{
"name": "Mac",
"includePath": [
"${workspaceFolder}/**",
"${vcpkgRoot}/arm64-osx/include"
],
"defines": [],
"macFrameworkPath": [
"/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks"
],
"compilerPath": "/usr/bin/clang",
"cStandard": "c17",
"cppStandard": "c++17",
"intelliSenseMode": "macos-clang-arm64",
"configurationProvider": "ms-vscode.cmake-tools"
}
],
"version": 4
} |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment



Uh oh!
There was an error while loading. Please reload this page.
OS : Mac Ventura
VS Code Version : 1.73.1
C++ extension version : 1.13.4
Hardware : M1 Pro, RAM 16 GB
Code analysis is mostly unresponsive. Even though I change the code, it can't even catch up the latest code update. This is the most notable example when I write some GRPC things. I added
;into the code but still showing the outdate error. It disappeared only after the cmdDeveloper: Reload Window. As you see, this screenshot is so much meme.All reactions