From 2afa7d0bc5a401f24534ff212451a3b2925d060b Mon Sep 17 00:00:00 2001 From: Drew Hubley <96780897+spectre-ns@users.noreply.github.com> Date: Mon, 6 Nov 2023 12:52:00 -0400 Subject: [PATCH] Update xtensor_config.hpp Updated to allow overriding of alignment --- include/xtensor/xtensor_config.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/xtensor/xtensor_config.hpp b/include/xtensor/xtensor_config.hpp index 184106289..b94c89c52 100644 --- a/include/xtensor/xtensor_config.hpp +++ b/include/xtensor/xtensor_config.hpp @@ -79,7 +79,7 @@ #else #ifdef XTENSOR_USE_XSIMD -#define XTENSOR_DEFAULT_ALLOCATOR(T) xsimd::aligned_allocator +#define XTENSOR_DEFAULT_ALLOCATOR(T) xsimd::aligned_allocator #else #define XTENSOR_DEFAULT_ALLOCATOR(T) std::allocator #endif