Я хочу статически анализировать код, не проверяя наличие операторов включения. В настоящее время я получаю сообщение об ошибке:
cmd command:
clang-tidy path_to_file -- -DCMAKE_EXPORT_COMPILE_COMMANDS=ON -fsyntax-only
output:
/usr/include/wchar.h:39:11: error: 'stdarg.h' file not found [clang-diagnostic-error]
# include <stdarg.h>
^
код:
#include <iostream>
using namespace std;
int main()
{
int * arg = new int[2];
delete [] arg;
}