Fix a bunch of -Wdocumentation warnings.
[oota-llvm.git] / include / llvm / ADT / SetVector.h
index abe20676d54d88543e6c64bd62384292870822d3..965f0deacaa249475f6dedf45d5d379b052ca737 100644 (file)
@@ -144,6 +144,12 @@ public:
     set_.erase(back());
     vector_.pop_back();
   }
+  
+  T pop_back_val() {
+    T Ret = back();
+    pop_back();
+    return Ret;
+  }
 
   bool operator==(const SetVector &that) const {
     return vector_ == that.vector_;