From 139e5c5b75aed5353c3941aa6e8dad1ebb51e2e5 Mon Sep 17 00:00:00 2001 From: David Majnemer Date: Sat, 24 Aug 2013 09:24:26 +0000 Subject: [PATCH] Fix test, make the template type a const pointer. llvm-svn: 189166 --- clang/test/CodeGenCXX/debug-info-template.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/test/CodeGenCXX/debug-info-template.cpp b/clang/test/CodeGenCXX/debug-info-template.cpp index 0f7230cc6741..80891ab68bd3 100644 --- a/clang/test/CodeGenCXX/debug-info-template.cpp +++ b/clang/test/CodeGenCXX/debug-info-template.cpp @@ -98,7 +98,7 @@ TC::nested tci; TC tcn; struct _GUID; -template <_GUID *> +template struct tmpl_guid { };