mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 11:49:06 +00:00
Common: asterisks go against the type name
not the variable name
This commit is contained in:
parent
7c3e4b34f3
commit
78aa398e7c
22 changed files with 44 additions and 44 deletions
|
@ -45,7 +45,7 @@ void* AllocateExecutableMemory(size_t size, bool low)
|
|||
#if defined(_WIN32)
|
||||
void* ptr = VirtualAlloc(0, size, MEM_COMMIT, PAGE_EXECUTE_READWRITE);
|
||||
#else
|
||||
static char *map_hint = nullptr;
|
||||
static char* map_hint = nullptr;
|
||||
#if defined(_M_X86_64) && !defined(MAP_32BIT)
|
||||
// This OS has no flag to enforce allocation below the 4 GB boundary,
|
||||
// but if we hint that we want a low address it is very likely we will
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue