fix linting errors

This commit is contained in:
Talles Amadeu 2025-12-09 13:43:44 -03:00
parent d345186370
commit f1917aa4fc
1 changed files with 22 additions and 0 deletions

22
.vscode/c_cpp_properties.json vendored Normal file
View File

@ -0,0 +1,22 @@
{
"configurations": [
{
"name": "Mac",
"includePath": [
"${workspaceFolder}/**",
"/opt/homebrew/Cellar/llvm/21.1.7/include",
"/opt/homebrew/include",
"/usr/local/include"
],
"defines": [],
"macFrameworkPath": [
"/Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks"
],
"compilerPath": "/usr/bin/clang",
"cStandard": "c17",
"cppStandard": "c++17",
"intelliSenseMode": "macos-clang-arm64"
}
],
"version": 4
}