From 71e9b45446f27d3376f32c042678a64043efcdfe Mon Sep 17 00:00:00 2001 From: Lukas W Date: Sun, 8 Jul 2018 14:30:13 +0200 Subject: [PATCH] Memory: Fix wrong rebind --- include/Memory.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/Memory.h b/include/Memory.h index 791d45c20..243d1e476 100644 --- a/include/Memory.h +++ b/include/Memory.h @@ -90,7 +90,7 @@ class AlignedAllocator : _AlignedAllocator_Base { public: typedef T value_type; - template struct rebind { typedef MmAllocator other; }; + template struct rebind { typedef AlignedAllocator other; }; AlignedAllocator( size_t alignment = 16 ) : alignment(alignment) {}