This is obviously illegal C++ code, but was apparently accepted by 3.3
authorChris Lattner <sabre@nondot.org>
Fri, 14 Nov 2003 06:03:05 +0000 (06:03 +0000)
committerChris Lattner <sabre@nondot.org>
Fri, 14 Nov 2003 06:03:05 +0000 (06:03 +0000)
bork

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9993 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Use.h

index f94045b39e4c7d0c994a7b160ab9ba04edd51d0f..d7c1010fc899c9e1ec45380e38bac79f73ac307c 100644 (file)
@@ -80,13 +80,13 @@ struct ilist_traits<Use> {
 };
 
 
-template<> struct std::simplify_type<Use> {
+template<> struct simplify_type<Use> {
   typedef Value* SimpleType;
   static SimpleType getSimplifiedValue(const Use &Val) {
     return (SimpleType)Val.get();
   }
 };
-template<> struct std::simplify_type<const Use> {
+template<> struct simplify_type<const Use> {
   typedef Value* SimpleType;
   static SimpleType getSimplifiedValue(const Use &Val) {
     return (SimpleType)Val.get();