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.)
This commit is contained in:
Martin Storsjö 2014-02-06 10:55:12 +02:00
parent 43814000e4
commit 3a1bc92778

View File

@ -4,6 +4,7 @@
#include <stddef.h>
#include <stdlib.h>
#include <stdint.h>
#include <algorithm>
class BufferedData {
public: