diff options
| author | Stefan Boberg <[email protected]> | 2025-10-28 22:34:52 +0100 |
|---|---|---|
| committer | GitHub Enterprise <[email protected]> | 2025-10-28 22:34:52 +0100 |
| commit | 9c2cdc2345880f18b67af6b7b5c11d0ce9041ced (patch) | |
| tree | dc868fb7368df37e7c3645f4cadea8bf73303505 /src/zencore/memtrack/callstacktrace.h | |
| parent | 5.7.7 (diff) | |
| download | zen-9c2cdc2345880f18b67af6b7b5c11d0ce9041ced.tar.xz zen-9c2cdc2345880f18b67af6b7b5c11d0ce9041ced.zip | |
fix --zentrace=no compile errors (#616)
* make sure the correct `UE_WITH_TRACE` conditional is used to enable/disable support code as appropriate
* fixed some accidental `int32`, `int64` et al usage, due to typedefs leaking through from trace header
with this fix, it is now possible to build with `--zentrace=no` again
Diffstat (limited to 'src/zencore/memtrack/callstacktrace.h')
| -rw-r--r-- | src/zencore/memtrack/callstacktrace.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zencore/memtrack/callstacktrace.h b/src/zencore/memtrack/callstacktrace.h index 3e191490b..1118d3395 100644 --- a/src/zencore/memtrack/callstacktrace.h +++ b/src/zencore/memtrack/callstacktrace.h @@ -14,7 +14,7 @@ //////////////////////////////////////////////////////////////////////////////// #if !defined(UE_CALLSTACK_TRACE_ENABLED) -# if UE_TRACE_ENABLED +# if ZEN_WITH_TRACE # if ZEN_PLATFORM_WINDOWS # define UE_CALLSTACK_TRACE_ENABLED 1 # endif |