summaryrefslogtreecommitdiff
path: root/src/debugallocation.cc
diff options
context:
space:
mode:
authorMostyn Bramley-Moore <mostynb@opera.com>2017-05-11 20:40:18 +0200
committerAliaksey Kandratsenka <alkondratenko@gmail.com>2017-05-14 18:01:18 -0700
commit9b17a8a5ba1c8320d12c6e6df0ab54ff218b50e6 (patch)
tree6462bbda9616fdb381d980c7bf0799f744f7506e /src/debugallocation.cc
parent86ce69d77ff5f881c5701901bf7d1ef884f9e33a (diff)
downloadgperftools-9b17a8a5ba1c8320d12c6e6df0ab54ff218b50e6.tar.gz
remove superfluous size_t value >= 0 check
Diffstat (limited to 'src/debugallocation.cc')
-rw-r--r--src/debugallocation.cc1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/debugallocation.cc b/src/debugallocation.cc
index 9e4813f..db54b40 100644
--- a/src/debugallocation.cc
+++ b/src/debugallocation.cc
@@ -619,7 +619,6 @@ class MallocBlock {
free_queue_lock_.Lock();
}
}
- RAW_CHECK(free_queue_size_ >= 0, "Free queue size went negative!");
free_queue_lock_.Unlock();
for (int i = 0; i < num_entries; i++) {
CheckForDanglingWrites(entries[i]);