Replace OwningPtr<T> with std::unique_ptr<T>.
[oota-llvm.git] / lib / CodeGen / LiveRegMatrix.cpp
index 7c9437866357f7de71e995328bd2b652e959b0a8..7f797beec8e2564345735a5c074a8ab44d8afd33 100644 (file)
@@ -67,7 +67,7 @@ void LiveRegMatrix::releaseMemory() {
     Matrix[i].clear();
     // No need to clear Queries here, since LiveIntervalUnion::Query doesn't
     // have anything important to clear and LiveRegMatrix's runOnFunction()
-    // does a OwningPtr::reset anyways.
+    // does a std::unique_ptr::reset anyways.
   }
 }