aboutsummaryrefslogtreecommitdiff
path: root/zencore/include
diff options
context:
space:
mode:
Diffstat (limited to 'zencore/include')
-rw-r--r--zencore/include/zencore/compactbinaryvalue.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/zencore/include/zencore/compactbinaryvalue.h b/zencore/include/zencore/compactbinaryvalue.h
index 5795ef957..0124a8983 100644
--- a/zencore/include/zencore/compactbinaryvalue.h
+++ b/zencore/include/zencore/compactbinaryvalue.h
@@ -15,7 +15,7 @@ namespace CompactBinaryPrivate {
template<typename T>
static constexpr inline T ReadUnaligned(const void* const Memory)
{
-#if PLATFORM_SUPPORTS_UNALIGNED_LOADS
+#if ZEN_PLATFORM_SUPPORTS_UNALIGNED_LOADS
return *static_cast<const T*>(Memory);
#else
T Value;