mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-18 17:55:18 +00:00
Document the return value of SmallSet insert.
llvm-svn: 178742
This commit is contained in:
parent
1969a96fcd
commit
289f297421
@ -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…
x
Reference in New Issue
Block a user