summaryrefslogtreecommitdiffstats
path: root/base/observer_list.h
diff options
context:
space:
mode:
Diffstat (limited to 'base/observer_list.h')
-rw-r--r--base/observer_list.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/base/observer_list.h b/base/observer_list.h
index 9f8b5cf..c3777b9 100644
--- a/base/observer_list.h
+++ b/base/observer_list.h
@@ -89,7 +89,7 @@ class ObserverList {
// Remove an observer from the list.
void RemoveObserver(ObserverType* obs) {
- typename ListType::iterator it =
+ typename ListType::iterator it =
std::find(observers_.begin(), observers_.end(), obs);
if (it != observers_.end()) {
if (notify_depth_) {