Fix minor issues and create a .clangd config for different builddirs
All checks were successful
Build ptprnt / build (push) Successful in 2m19s

This commit is contained in:
2025-10-19 14:47:52 +02:00
parent 56a3722da9
commit b24793bce6
7 changed files with 19 additions and 13 deletions

View File

@@ -5,11 +5,12 @@
"compilerPath": "/usr/bin/clang",
"cStandard": "c11",
"cppStandard": "c++20",
"compileCommands": "${workspaceFolder}/builddir/compile_commands.json",
"browse": {
"path": ["${workspaceFolder}"]
"path": [
"${workspaceFolder}"
]
}
}
],
"version": 4
}
}

View File

@@ -1,7 +1,6 @@
{
"clangd.arguments": [
"-background-index",
"-compile-commands-dir=builddir/"
],
"editor.formatOnType": false,
"editor.formatOnSave": true,