Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(465)

Unified Diff: Source/wtf/FastMalloc.cpp

Issue 34273002: Remove UnusedParam.h (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/wtf/Compiler.h ('k') | Source/wtf/TCSystemAlloc.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/wtf/FastMalloc.cpp
diff --git a/Source/wtf/FastMalloc.cpp b/Source/wtf/FastMalloc.cpp
index daa27d3b88c1b7b821d22707a5f83ff6f2a0ef50..cddf0617cf693a2dde2e16057ed600c35cb12f7c 100644
--- a/Source/wtf/FastMalloc.cpp
+++ b/Source/wtf/FastMalloc.cpp
@@ -80,7 +80,6 @@
#include "wtf/Assertions.h"
#include "wtf/CPU.h"
#include "wtf/StdLibExtras.h"
-#include "wtf/UnusedParam.h"
#if OS(MACOSX)
#include <AvailabilityMacros.h>
@@ -2319,7 +2318,6 @@ class TCMalloc_ThreadCache_FreeList {
// is not present
NEVER_INLINE void Validate(HardenedSLL missing, size_t size) {
HardenedSLL node = list_;
- UNUSED_PARAM(size);
while (node) {
RELEASE_ASSERT(node != missing);
RELEASE_ASSERT(IS_DEFINITELY_POISONED(node.value(), size));
« no previous file with comments | « Source/wtf/Compiler.h ('k') | Source/wtf/TCSystemAlloc.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698