diff options
Diffstat (limited to 'base/values.h')
-rw-r--r-- | base/values.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/base/values.h b/base/values.h index bb23ffc..8c87844 100644 --- a/base/values.h +++ b/base/values.h @@ -453,7 +453,9 @@ class BASE_EXPORT ListValue : public Value { // Removes the element at |iter|. If |out_value| is NULL, the value will be // deleted, otherwise ownership of the value is passed back to the caller. - void Erase(iterator iter, Value** out_value); + // Returns an iterator pointing to the location of the element that + // followed the erased element. + iterator Erase(iterator iter, Value** out_value); // Appends a Value to the end of the list. void Append(Value* in_value); |