aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--zencore/compactbinaryvalidation.cpp2
-rw-r--r--zencore/include/zencore/compactbinaryvalue.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/zencore/compactbinaryvalidation.cpp b/zencore/compactbinaryvalidation.cpp
index 3d72148f9..a787e88ab 100644
--- a/zencore/compactbinaryvalidation.cpp
+++ b/zencore/compactbinaryvalidation.cpp
@@ -17,7 +17,7 @@ namespace CbValidationPrivate {
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;
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;