aboutsummaryrefslogtreecommitdiffstats
path: root/src/utils/simd_32/simd_32.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils/simd_32/simd_32.h')
-rw-r--r--src/utils/simd_32/simd_32.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/utils/simd_32/simd_32.h b/src/utils/simd_32/simd_32.h
index e2c483d20..e172fa919 100644
--- a/src/utils/simd_32/simd_32.h
+++ b/src/utils/simd_32/simd_32.h
@@ -28,22 +28,4 @@
#endif
-namespace Botan {
-
-template<>
-inline SIMD_32 rotate_left(SIMD_32 x, size_t rot)
- {
- x.rotate_left(rot);
- return x;
- }
-
-template<>
-inline SIMD_32 rotate_right(SIMD_32 x, size_t rot)
- {
- x.rotate_right(rot);
- return x;
- }
-
-}
-
#endif