r189166 - Fix test, make the template type a const pointer.

David Majnemer david.majnemer at gmail.com
Sat Aug 24 02:24:27 PDT 2013


Author: majnemer
Date: Sat Aug 24 04:24:26 2013
New Revision: 189166

URL: http://llvm.org/viewvc/llvm-project?rev=189166&view=rev
Log:
Fix test, make the template type a const pointer.

Modified:
    cfe/trunk/test/CodeGenCXX/debug-info-template.cpp

Modified: cfe/trunk/test/CodeGenCXX/debug-info-template.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenCXX/debug-info-template.cpp?rev=189166&r1=189165&r2=189166&view=diff
==============================================================================
--- cfe/trunk/test/CodeGenCXX/debug-info-template.cpp (original)
+++ cfe/trunk/test/CodeGenCXX/debug-info-template.cpp Sat Aug 24 04:24:26 2013
@@ -98,7 +98,7 @@ TC<unsigned, 2, &glb, &foo::e, &foo::f,
 TC<int, -3, nullptr, nullptr, nullptr, nullptr, tmpl_impl> tcn;
 
 struct _GUID;
-template <_GUID *>
+template <const _GUID *>
 struct tmpl_guid {
 };
 





More information about the cfe-commits mailing list