From 2eea0bfdb6b4edacfffa71d1352c49c7e9b1a3f5 Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Mon, 8 Apr 2013 23:05:10 +0000 Subject: [PATCH] clang/test/Index/annotate-tokens.cpp: Appease msvc-targets with -fno-delayed-template-parsing. llvm-svn: 179065 --- clang/test/Index/annotate-tokens.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/test/Index/annotate-tokens.cpp b/clang/test/Index/annotate-tokens.cpp index 7da1fce627f7..16726547a2e2 100644 --- a/clang/test/Index/annotate-tokens.cpp +++ b/clang/test/Index/annotate-tokens.cpp @@ -28,7 +28,7 @@ struct TS { template void TS::foo() {} -// RUN: c-index-test -test-annotate-tokens=%s:1:1:30:1 %s | FileCheck %s +// RUN: c-index-test -test-annotate-tokens=%s:1:1:30:1 %s -fno-delayed-template-parsing | FileCheck %s // CHECK: Keyword: "struct" [1:1 - 1:7] StructDecl=bonk:1:8 (Definition) // CHECK: Identifier: "bonk" [1:8 - 1:12] StructDecl=bonk:1:8 (Definition) // CHECK: Punctuation: "{" [1:13 - 1:14] StructDecl=bonk:1:8 (Definition)