From 87153545ed94ba06a9b6cae70e9865979cd2d031 Mon Sep 17 00:00:00 2001 From: Matthew Parkinson Date: Thu, 27 Feb 2020 16:40:21 +0000 Subject: [PATCH] Update src/test/func/two_alloc_types/main.cc --- 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..dbcb38c 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); }