Fix formatting

This commit is contained in:
Amaury Chamayou
2020-02-27 16:21:24 +00:00
parent bd5702fa05
commit fdc582b619
2 changed files with 2 additions and 2 deletions

View File

@@ -8,8 +8,8 @@
#include "baseslab.h"
#include "sizeclass.h"
#include <string.h>
#include <new>
#include <string.h>
namespace snmalloc
{

View File

@@ -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;
(void)p_size;
return memset(p, c, size);
}