From cedc72a707dc574babd131d4f71955fb0860f89b Mon Sep 17 00:00:00 2001 From: Paul Fd Date: Wed, 11 Mar 2020 11:35:25 +0100 Subject: [PATCH] Unused constexpr --- src/sfizz/SIMDNEON.cpp | 1 - src/sfizz/SIMDSSE.cpp | 1 - 2 files changed, 2 deletions(-) diff --git a/src/sfizz/SIMDNEON.cpp b/src/sfizz/SIMDNEON.cpp index d5212904..6a6dc8d1 100644 --- a/src/sfizz/SIMDNEON.cpp +++ b/src/sfizz/SIMDNEON.cpp @@ -30,7 +30,6 @@ using Type = float; constexpr uintptr_t TypeAlignment { 4 }; -constexpr uintptr_t TypeAlignmentMask { TypeAlignment - 1 }; constexpr uintptr_t ByteAlignment { TypeAlignment * sizeof(Type) }; constexpr uintptr_t ByteAlignmentMask { ByteAlignment - 1 }; diff --git a/src/sfizz/SIMDSSE.cpp b/src/sfizz/SIMDSSE.cpp index 2eda8969..1b5c466c 100644 --- a/src/sfizz/SIMDSSE.cpp +++ b/src/sfizz/SIMDSSE.cpp @@ -17,7 +17,6 @@ using Type = float; constexpr uintptr_t TypeAlignment { 4 }; -constexpr uintptr_t TypeAlignmentMask { TypeAlignment - 1 }; constexpr uintptr_t ByteAlignment { TypeAlignment * sizeof(Type) }; constexpr uintptr_t ByteAlignmentMask { ByteAlignment - 1 };