소스 검색

Add missing <algorithm> include (#1709)

This is required for building under VS2017
Anders Jenbo 3 년 전
부모
커밋
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.
 
+#include <algorithm>
+
 #include "SHA512.hpp"
 #include "Utils.hpp"