commit | ae3d7a10c884daf85341ec0f89969d38d0fb5672 | [log] [tgz] |
---|---|---|
author | David Majnemer <david.majnemer@gmail.com> | Sat Aug 24 09:24:26 2013 +0000 |
committer | David Majnemer <david.majnemer@gmail.com> | Sat Aug 24 09:24:26 2013 +0000 |
tree | 0628324556e2ceac6dfe8355103c09d6fe8f9b17 | |
parent | 87b1f6d1901036602bcbccaeea341d175e7f900d [diff] [blame] |
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 0f7230c..80891ab 100644 --- a/test/CodeGenCXX/debug-info-template.cpp +++ b/test/CodeGenCXX/debug-info-template.cpp
@@ -98,7 +98,7 @@ TC<int, -3, nullptr, nullptr, nullptr, nullptr, tmpl_impl> tcn; struct _GUID; -template <_GUID *> +template <const _GUID *> struct tmpl_guid { };