forked from OSchip/llvm-project
Document the return value of SmallSet insert.
llvm-svn: 178742
This commit is contained in:
parent
7b51ae8e0e
commit
319758aa7c
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue