Document the return value of SmallSet insert.

llvm-svn: 178742
This commit is contained in:
Nadav Rotem 2013-04-04 04:54:21 +00:00
parent 7b51ae8e0e
commit 319758aa7c
1 changed files with 1 additions and 0 deletions

View File

@ -55,6 +55,7 @@ public:
}
/// insert - Insert an element into the set if it isn't already there.
/// Returns true if the element is inserted (it was not in the set before).
bool insert(const T &V) {
if (!isSmall())
return Set.insert(V).second;