summaryrefslogtreecommitdiffstats
path: root/base
diff options
context:
space:
mode:
authorthakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-06-22 19:32:37 +0000
committerthakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-06-22 19:32:37 +0000
commita7570cb0a22603215256522a75b14c00e7198a40 (patch)
treee6344260fcb108166d36ce7cfb9c559843853ebf /base
parent192132f233642398c8b1a2a20ccb7305a3cf924b (diff)
downloadchromium_src-a7570cb0a22603215256522a75b14c00e7198a40.zip
chromium_src-a7570cb0a22603215256522a75b14c00e7198a40.tar.gz
chromium_src-a7570cb0a22603215256522a75b14c00e7198a40.tar.bz2
Remove unused member variables found by clang's -Wunused-private-field
BUG=none TEST=none TBR=sergeyu Review URL: https://chromiumcodereview.appspot.com/10647002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@143676 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base')
-rw-r--r--base/debug/leak_tracker.h3
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; }
};