[llvm-commits] CVS: llvm/include/llvm/Use.h

Chris Lattner lattner at cs.uiuc.edu
Fri Nov 14 00:04:02 PST 2003


Changes in directory llvm/include/llvm:

Use.h updated: 1.3 -> 1.4

---
Log message:

This is obviously illegal C++ code, but was apparently accepted by 3.3

bork



---
Diffs of the changes:  (+2 -2)

Index: llvm/include/llvm/Use.h
diff -u llvm/include/llvm/Use.h:1.3 llvm/include/llvm/Use.h:1.4
--- llvm/include/llvm/Use.h:1.3	Tue Nov 11 16:41:30 2003
+++ llvm/include/llvm/Use.h	Fri Nov 14 00:03:05 2003
@@ -80,13 +80,13 @@
 };
 
 
-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();





More information about the llvm-commits mailing list