From 0a549e3875f11e2c75b6847bda8951a4b2014859 Mon Sep 17 00:00:00 2001 From: Wouter van Oortmerssen Date: Mon, 15 Sep 2014 16:27:21 -0700 Subject: [PATCH] Added missing assert.h to util.h. This was only causing compiler errors on certain compiler configurations. Change-Id: I110fb8c896f74aae7ef739e9a29c636393dbbde2 Tested: on Linux and Windows. --- include/flatbuffers/util.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/flatbuffers/util.h b/include/flatbuffers/util.h index 4292c5a25..b6bc78ad5 100644 --- a/include/flatbuffers/util.h +++ b/include/flatbuffers/util.h @@ -22,6 +22,7 @@ #include #include #include +#include #ifdef _WIN32 #include #else