From: David Majnemer Date: Sat, 24 Aug 2013 09:24:26 +0000 (+0000) Subject: Fix test, make the template type a const pointer. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ae3d7a10c884daf85341ec0f89969d38d0fb5672;p=clang Fix test, make the template type a const pointer. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@189166 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGenCXX/debug-info-template.cpp b/test/CodeGenCXX/debug-info-template.cpp index 0f7230cc67..80891ab68b 100644 --- a/test/CodeGenCXX/debug-info-template.cpp +++ b/test/CodeGenCXX/debug-info-template.cpp @@ -98,7 +98,7 @@ TC::nested tci; TC tcn; struct _GUID; -template <_GUID *> +template struct tmpl_guid { };