git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@273592 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Vassil Vassilev 2016-06-23 18:13:46 +00:00
parent 06876d225a
commit ec3f1412f3

View File

@ -124,7 +124,7 @@ public:
}
/// \brief Insert a new element into the SetVector.
/// \returns true iff the element was inserted into the SetVector.
/// \returns true if the element was inserted into the SetVector.
bool insert(const value_type &X) {
bool result = set_.insert(X).second;
if (result)