summaryrefslogtreecommitdiffstats
path: root/chrome/browser/sync/notifier/base/fastalloc.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/sync/notifier/base/fastalloc.h')
-rw-r--r--chrome/browser/sync/notifier/base/fastalloc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/sync/notifier/base/fastalloc.h b/chrome/browser/sync/notifier/base/fastalloc.h
index 244a1f8..ac0fb46 100644
--- a/chrome/browser/sync/notifier/base/fastalloc.h
+++ b/chrome/browser/sync/notifier/base/fastalloc.h
@@ -12,7 +12,7 @@ namespace notifier {
template<class T, size_t Size>
class FastAlloc {
public:
- FastAlloc() : buffer_(NULL), size_(0) { };
+ FastAlloc() : buffer_(NULL), size_(0) { }
~FastAlloc() { freeBuffer(); }
T* get_buffer(size_t size) {
if (size_ != 0) {