clang/test/Index/skip-parsed-bodies/compile_commands.json: Appease targeting msvc.

llvm-svn: 260347
This commit is contained in:
NAKAMURA Takumi 2016-02-10 01:45:51 +00:00
parent af94c0f2b3
commit 8d62f5c7ce
1 changed files with 3 additions and 3 deletions

View File

@ -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"
}
]