From 7e92d478a1c5da34a0e2024d638633744d92b4cf Mon Sep 17 00:00:00 2001 From: Anders Jenbo Date: Mon, 29 Aug 2022 19:39:04 +0200 Subject: [PATCH] Add missing include (#1709) This is required for building under VS2017 --- node/SHA512.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/node/SHA512.cpp b/node/SHA512.cpp index 5c602673b..2fe126a84 100644 --- a/node/SHA512.cpp +++ b/node/SHA512.cpp @@ -1,5 +1,7 @@ // This code is public domain, taken from a PD crypto source file on GitHub. +#include + #include "SHA512.hpp" #include "Utils.hpp"