aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/utils/simd_32/simd_32.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/simd_32/simd_32.h b/src/utils/simd_32/simd_32.h
index 1cbec2310..23dce0305 100644
--- a/src/utils/simd_32/simd_32.h
+++ b/src/utils/simd_32/simd_32.h
@@ -31,7 +31,7 @@ namespace Botan {
inline SIMD_32 rotate_left(const SIMD_32& x, u32bit rot)
{
- SIMD32 y = x;
+ SIMD_32 y = x;
y.rotate_left(rot);
return y;
}