blob: 2d1ace470bbd6221bb40c319f3cfc0344c573a69 [file] [log] [blame]
// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "object_pool_mock.h"
#include "object.h"
namespace chaps {
ObjectPoolMock::ObjectPoolMock() {}
ObjectPoolMock::~ObjectPoolMock() {
for (size_t i = 0; i < v_.size(); ++i) {
delete v_[i];
}
}
}