ref: 3a1bc927789a81c608b09e582b2f2aa0e66bac15
parent: 43814000e4c459a432102de84a8cf87ad59207f0
author: Martin Storsjö <martin@martin.st>
date: Thu Feb 6 05:55:12 EST 2014
Include <algorithm> for std::min This fixes building the test code on MSVC 2013. (Actually building all of the tests on windows still is tricky due to the OpenSSL dependency for SHA1, but there's a patchset in review to take care of that.)
--- a/test/utils/BufferedData.h
+++ b/test/utils/BufferedData.h
@@ -4,6 +4,7 @@
#include <stddef.h>
#include <stdlib.h>
#include <stdint.h>
+#include <algorithm>
class BufferedData {
public: