Skip to content

Commit

Permalink
clang/test/Index/skip-parsed-bodies/compile_commands.json: Appease ta…
Browse files Browse the repository at this point in the history
…rgeting msvc.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@260347 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
chapuni committed Feb 10, 2016
1 parent fbedfdf commit e290748
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/Index/skip-parsed-bodies/compile_commands.json
Original file line number Diff line number Diff line change
@@ -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"
}
]
Expand Down

0 comments on commit e290748

Please sign in to comment.