diff options
Diffstat (limited to 'base')
-rw-r--r-- | base/debug/leak_tracker.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/base/debug/leak_tracker.h b/base/debug/leak_tracker.h index a8ea5f4..ec9f5d6 100644 --- a/base/debug/leak_tracker.h +++ b/base/debug/leak_tracker.h @@ -1,4 +1,4 @@ -// Copyright (c) 2010 The Chromium Authors. All rights reserved. +// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -53,6 +53,7 @@ namespace debug { template<typename T> class LeakTracker { public: + ~LeakTracker() {} static void CheckForLeaks() {} static int NumLiveInstances() { return -1; } }; |