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? |
Beta Was this translation helpful? Give feedback.
-
flame icon? i dont' find any flame icon in status bar. And yes, I enabled both what u mentioned |
Beta Was this translation helpful? Give feedback.
-
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
} |
Beta Was this translation helpful? Give feedback.
-
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.Beta Was this translation helpful? Give feedback.
All reactions