From 9f31f8075c7e1bfbec68957a6ee917ed51508a30 Mon Sep 17 00:00:00 2001 From: Amaury Chamayou Date: Thu, 27 Feb 2020 17:24:07 +0000 Subject: [PATCH] Use UNUSED --- src/test/func/two_alloc_types/main.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/func/two_alloc_types/main.cc b/src/test/func/two_alloc_types/main.cc index ef681bd..341f32d 100644 --- a/src/test/func/two_alloc_types/main.cc +++ b/src/test/func/two_alloc_types/main.cc @@ -19,7 +19,7 @@ extern "C" const void* __oe_get_heap_end() extern "C" void* oe_memset_s(void* p, size_t p_size, int c, size_t size) { - (void)p_size; + UNUSED(p_size); return memset(p, c, size); }