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)); |