瀏覽代碼

Add missing <algorithm> include (#1709)

This is required for building under VS2017
Anders Jenbo 2 年之前
父節點
當前提交
7e92d478a1
共有 1 個文件被更改,包括 2 次插入0 次删除
  1. 2 0
      node/SHA512.cpp

+ 2 - 0
node/SHA512.cpp

@@ -1,5 +1,7 @@
 // This code is public domain, taken from a PD crypto source file on GitHub.
 // This code is public domain, taken from a PD crypto source file on GitHub.
 
 
+#include <algorithm>
+
 #include "SHA512.hpp"
 #include "SHA512.hpp"
 #include "Utils.hpp"
 #include "Utils.hpp"