From ca301f040b838fa79ab30137e5014951cbf4c610 Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer Date: Fri, 13 Sep 2019 09:47:02 -0400 Subject: [PATCH] add missing include for compiling with intel compilers without TBB --- src/memory.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/memory.cpp b/src/memory.cpp index a513dde6c2..4374882efe 100644 --- a/src/memory.cpp +++ b/src/memory.cpp @@ -20,6 +20,7 @@ #define LMP_USE_TBB_ALLOCATOR #include "tbb/scalable_allocator.h" #else +#include #include #endif #endif