diff --git a/lib/AlignedAllocator.h b/lib/AlignedAllocator.h index d0de1ec3..89731246 100644 --- a/lib/AlignedAllocator.h +++ b/lib/AlignedAllocator.h @@ -161,7 +161,8 @@ public: #error "implement MPI3 windowed allocate" } #else - pointer allocate(size_type __n, const void* _p= 0) + pointer allocate(size_type __n, const void* _p= 0) + { #ifdef HAVE_MM_MALLOC_H _Tp * ptr = (_Tp *) _mm_malloc(__n*sizeof(_Tp),128); #else @@ -187,9 +188,9 @@ template inline bool operator!=(const commAllocator<_Tp>&, const //////////////////////////////////////////////////////////////////////////////// // Template typedefs //////////////////////////////////////////////////////////////////////////////// -template using Vector = std::vector >; +template using Vector = std::vector >; template using commVector = std::vector >; -template using Matrix = std::vector > >; +template using Matrix = std::vector > >; }; // namespace Grid #endif