From 3a1bc927789a81c608b09e582b2f2aa0e66bac15 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Martin=20Storsj=C3=B6?= <martin@martin.st>
Date: Thu, 6 Feb 2014 10:55:12 +0200
Subject: [PATCH] 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.)
---
 test/utils/BufferedData.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/test/utils/BufferedData.h b/test/utils/BufferedData.h
index 9852dfd6..2b383296 100644
--- 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: