Merge pull request #386 from ace13/develop

Missing includes.
develop
expwnent 2014-11-14 18:59:53 -05:00
commit d120e5aa84
4 changed files with 7 additions and 0 deletions

@ -22,6 +22,7 @@
//----------------------------------------------------------------------
//basic includes
#include <algorithm>
#include <fstream>
#include <iostream>
#include <errno.h>

@ -47,6 +47,10 @@
#elif !defined(_MSC_VER)
#include <stdint.h>
#endif
#include <algorithm>
using std::min;
using std::max;
// make MSVC shut up about some things
#ifdef _MSC_VER

@ -47,6 +47,7 @@ POSSIBILITY OF SUCH DAMAGE.
#include "ColorText.h"
#include "MiscUtils.h"
#include <algorithm>
#include <cstdio>
#include <cstdlib>
#include <sstream>

@ -10,6 +10,7 @@
#include <iomanip>
#include <map>
#include <algorithm>
#include <functional>
#include <vector>
using namespace std;