Chromium Code Reviews| Index: athena/activity/activity_manager_impl.cc |
| diff --git a/athena/activity/activity_manager_impl.cc b/athena/activity/activity_manager_impl.cc |
| index 8e37bcae2dfe996080809e15e54ea5357039cf7f..32db67203413b582d056457eff74274cddd5922b 100644 |
| --- a/athena/activity/activity_manager_impl.cc |
| +++ b/athena/activity/activity_manager_impl.cc |
| @@ -24,7 +24,7 @@ class ActivityManagerImpl : public ActivityManager { |
| instance = this; |
| } |
| virtual ~ActivityManagerImpl() { |
| - while (activities_.empty()) |
| + while (!activities_.empty()) |
|
Jun Mukai
2014/06/06 20:17:29
I think this has been fixed by another CL (sorry f
oshima
2014/06/06 20:55:51
I needed this in order for the test to pass. rebas
|
| delete activities_.front(); |
| CHECK_EQ(this, instance); |