static analysis script

Removed some files
This commit is contained in:
jorenchik
2024-11-17 18:38:23 +02:00
parent 34b62b5f88
commit 581b4b3926
5 changed files with 42 additions and 31 deletions

View File

@@ -1,26 +0,0 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Launch Package",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${fileDirname}"
},
{
"name": "Debug with Build Flags",
"type": "go",
"request": "launch",
"mode": "debug",
"program": "${workspaceFolder}/mdemory-app-qt/main.go",
// "buildFlags": "-gcflags='all=-N -l'",
"args": [],
"env": {},
"cwd": "${workspaceFolder}"
}
]
}

View File

@@ -6,6 +6,7 @@ int initApp(int argc, char *argv[]) {
auto *app = new QApplication(argc, argv);
initMdemListWindow();
app->exec();
delete app;
return 0;
}