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 //basic includes
#include <algorithm>
#include <fstream> #include <fstream>
#include <iostream> #include <iostream>
#include <errno.h> #include <errno.h>

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

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

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