LeviLamina
Loading...
Searching...
No Matches
MoodyCamelBedrockMemoryTraits.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Bedrock::Memory {
6
7struct MoodyCamelBedrockMemoryTraits : public ::moodycamel::ConcurrentQueueDefaultTraits {
8public:
9 // static functions
10 // NOLINTBEGIN
11 MCFOLD static void free(void* ptr);
12
13 MCAPI static void* malloc(uint64 size);
14 // NOLINTEND
15};
16
17} // namespace Bedrock::Memory
Definition MoodyCamelBedrockMemoryTraits.h:7