forked from OSchip/llvm-project
clang/test/Index/skip-parsed-bodies/compile_commands.json: Appease targeting msvc.
llvm-svn: 260347
This commit is contained in:
parent
af94c0f2b3
commit
8d62f5c7ce
|
@ -1,17 +1,17 @@
|
|||
[
|
||||
{
|
||||
"directory": ".",
|
||||
"command": "/usr/bin/clang++ -fsyntax-only t1.cpp",
|
||||
"command": "/usr/bin/clang++ -fsyntax-only -fno-ms-compatibility -fno-delayed-template-parsing t1.cpp",
|
||||
"file": "t1.cpp"
|
||||
},
|
||||
{
|
||||
"directory": ".",
|
||||
"command": "/usr/bin/clang++ -fsyntax-only t2.cpp -DBLAH",
|
||||
"command": "/usr/bin/clang++ -fsyntax-only -fno-ms-compatibility -fno-delayed-template-parsing t2.cpp -DBLAH",
|
||||
"file": "t2.cpp"
|
||||
},
|
||||
{
|
||||
"directory": ".",
|
||||
"command": "/usr/bin/clang++ -fsyntax-only t3.cpp -DBLAH",
|
||||
"command": "/usr/bin/clang++ -fsyntax-only -fno-ms-compatibility -fno-delayed-template-parsing t3.cpp -DBLAH",
|
||||
"file": "t2.cpp"
|
||||
}
|
||||
]
|
||||
|
|
Loading…
Reference in New Issue