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.
This commit is contained in:
Wouter van Oortmerssen 2014-09-15 16:27:21 -07:00
parent e57b86bb9f
commit 0a549e3875
1 changed files with 1 additions and 0 deletions

View File

@ -22,6 +22,7 @@
#include <string>
#include <sstream>
#include <stdlib.h>
#include <assert.h>
#ifdef _WIN32
#include <direct.h>
#else