From 66583e8a3f5f33f08d9fb44a4577831696dda34c Mon Sep 17 00:00:00 2001 From: Barak Amar <barak.amar@gmail.com> Date: Tue, 17 Jun 2014 22:31:25 +0300 Subject: [PATCH] Fix compilation with VS 2013 missing header --- include/flatbuffers/flatbuffers.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/flatbuffers/flatbuffers.h b/include/flatbuffers/flatbuffers.h index 75ae59af..7dd30f39 100644 --- a/include/flatbuffers/flatbuffers.h +++ b/include/flatbuffers/flatbuffers.h @@ -24,6 +24,7 @@ #include <string> #include <type_traits> #include <vector> +#include <algorithm> #if __cplusplus <= 199711L && \ (!defined(_MSC_VER) || _MSC_VER < 1600) && \ -- GitLab