Add a clear() method to PriorityQueue.
[oota-llvm.git] / include / llvm / ADT / PriorityQueue.h
index 2503f75e81a265b279a1e0ed6d54ffb3c9b6295d..f10bb6c7afa85a842511b923defc1b5014c13dcc 100644 (file)
@@ -70,6 +70,12 @@ public:
   void reheapify() {
     std::make_heap(this->c.begin(), this->c.end(), this->comp);
   }
+
+  /// clear - Erase all elements from the queue.
+  ///
+  void clear() {
+    this->c.clear();
+  }
 };
 
 } // End llvm namespace