More build fixes
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
// Generated by the DN single header generator 2025-11-09 15:37:40
|
||||
// Generated by the DN single header generator 2025-11-09 17:09:52
|
||||
|
||||
#if !defined(DN_BASE_INC_H)
|
||||
#define DN_BASE_INC_H
|
||||
@@ -4015,7 +4015,7 @@ DN_API void DN_LeakDump_ (DN_LeakTracker *leak);
|
||||
#if defined(DN_LEAK_TRACKING)
|
||||
#define DN_LeakTrackAlloc(leak, ptr, size, alloc_can_leak) DN_LeakTrackAlloc_(leak, ptr, size, alloc_can_leak)
|
||||
#define DN_LeakTrackDealloc(leak, ptr) DN_LeakTrackDealloc_(leak, ptr)
|
||||
#define DN_LeakDump(leak) DN_LeakDump(leak);
|
||||
#define DN_LeakDump(leak) DN_LeakDump_(leak)
|
||||
#else
|
||||
#define DN_LeakTrackAlloc(leak, ptr, size, alloc_can_leak) do { (void)ptr; (void)size; (void)alloc_can_leak; } while (0)
|
||||
#define DN_LeakTrackDealloc(leak, ptr) do { (void)ptr; } while (0)
|
||||
@@ -6330,8 +6330,9 @@ enum DN_InitFlags_
|
||||
{
|
||||
DN_InitFlags_Nil = 0,
|
||||
DN_InitFlags_OS = 1 << 0,
|
||||
DN_InitFlags_LogLibFeatures = 1 << 1,
|
||||
DN_InitFlags_LogCPUFeatures = 1 << 2,
|
||||
DN_InitFlags_OSLeakTracker = 1 << 1,
|
||||
DN_InitFlags_LogLibFeatures = 1 << 2,
|
||||
DN_InitFlags_LogCPUFeatures = 1 << 3,
|
||||
DN_InitFlags_LogAllFeatures = DN_InitFlags_LogLibFeatures | DN_InitFlags_LogCPUFeatures,
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user