From 8c544aa08cadd4d2c83b7ca7ed895104cfa79fbc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ben=20Gr=C3=A4f?= Date: Sat, 2 Feb 2019 08:27:01 +0100 Subject: [PATCH] Fix compile issues on some compilers --- src/Mem.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Mem.cpp b/src/Mem.cpp index fdc3d727..36551711 100644 --- a/src/Mem.cpp +++ b/src/Mem.cpp @@ -22,6 +22,7 @@ */ +#include #include #include "crypto/CryptoNight.h" @@ -89,4 +90,4 @@ void Mem::release(ScratchPad** scratchPads, ScratchPadMem& scratchPadMem, int th for (size_t i = 0; i < getThreadHashFactor(threadId); ++i) { _mm_free(scratchPads[i]); } -} \ No newline at end of file +}