From c93cfbce066d481eeacdebd9eba9281ba6b66b2c Mon Sep 17 00:00:00 2001 From: Stefan Boberg Date: Mon, 27 Sep 2021 14:48:00 +0200 Subject: CompactBinary: PLATFORM_SUPPORTS_UNALIGNED_LOADS -> ZEN_PLATFORM_SUPPORTS_UNALIGNED_LOADS --- zencore/include/zencore/compactbinaryvalue.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'zencore/include') 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 static constexpr inline T ReadUnaligned(const void* const Memory) { -#if PLATFORM_SUPPORTS_UNALIGNED_LOADS +#if ZEN_PLATFORM_SUPPORTS_UNALIGNED_LOADS return *static_cast(Memory); #else T Value; -- cgit v1.2.3