diff options
Diffstat (limited to 'src/lib/utils/rotate.h')
-rw-r--r-- | src/lib/utils/rotate.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/utils/rotate.h b/src/lib/utils/rotate.h index d927b93b7..16a44c71e 100644 --- a/src/lib/utils/rotate.h +++ b/src/lib/utils/rotate.h @@ -60,7 +60,7 @@ inline T rotr_var(T input, size_t rot) return rot ? static_cast<T>((input >> rot) | (input << (sizeof(T)*8 - rot))) : input; } -#if BOTAN_USE_GCC_INLINE_ASM +#if defined(BOTAN_USE_GCC_INLINE_ASM) #if defined(BOTAN_TARGET_ARCH_IS_X86_64) || defined(BOTAN_TARGET_ARCH_IS_X86_32) |