Skip to content

Commit 1dfe43a

Browse files
committed
fix(wwmemlog): Add stddef.h include for size_t definition
Include stddef.h to ensure size_t is properly defined for MinGW builds. This prevents compilation errors where size_t is used but not declared. This fix is based on PR TheSuperHackers#547 by zzambers which addresses MinGW compilation issues throughout the codebase.
1 parent 9cc6c17 commit 1dfe43a

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

Core/Libraries/Source/WWVegas/WWDebug/wwmemlog.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@
3838

3939
#pragma once
4040

41+
#include <stddef.h>
42+
4143
#define LOG_MEMORY // Comment this out to disable memlog compiling in
4244

4345
class MemLogClass;

0 commit comments

Comments
 (0)