Make SmallPtrSet iterators real iterators
[oota-llvm.git] / include / llvm / ADT / OwningPtr.h
index 89dc19ca05bf2721b056570762ada458571fd214..cc53c8c30c1216c8bdaad394ab6a147c989117a0 100644 (file)
@@ -26,7 +26,7 @@ namespace llvm {
 template<class T>
 class OwningPtr {
   OwningPtr(OwningPtr const &);             // DO NOT IMPLEMENT
-  OwningPtr &operator=(OwningPtr const &); // DO NOT IMPLEMENT
+  OwningPtr &operator=(OwningPtr const &);  // DO NOT IMPLEMENT
   T *Ptr;
 public:
   explicit OwningPtr(T *P = 0) : Ptr(P) {}