Skip to content

Commit 7830c2d

Browse files
committed
[clangd] Get rid of delayed template parsing
Summary: No need to pass fno-delayed-template-parsing as the opposite flag is only passed to cc1 when abi is set to msvc. Sending as a follow-up to D73613 to keep changes in the release branch minimal. Reviewers: sammccall Subscribers: ilya-biryukov, MaskRay, jkorous, arphaman, usaxena95, cfe-commits Tags: #clang Differential Revision: https://reviews.llvm.org/D73615
1 parent 55b0e9c commit 7830c2d

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

clang-tools-extra/clangd/unittests/HoverTests.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -580,9 +580,6 @@ class Foo {})cpp";
580580
Annotations T(Case.Code);
581581
TestTU TU = TestTU::withCode(T.code());
582582
TU.ExtraArgs.push_back("-std=c++17");
583-
// FIXME: This is no longer necessary, as the default behavior is no delayed
584-
// parsing in the triplet below.
585-
TU.ExtraArgs.push_back("-fno-delayed-template-parsing");
586583
// Types might be different depending on the target triplet, we chose a
587584
// fixed one to make sure tests passes on different platform.
588585
TU.ExtraArgs.push_back("--target=x86_64-pc-linux-gnu");

0 commit comments

Comments
 (0)