Merge pull request #482 from af4t/master

MSVC 2015 wants <algorithm> #included for std::min.  If any other com…
This commit is contained in:
Michael Cook (mackal) 2015-12-30 12:46:51 -05:00
commit e70b34f245

View File

@ -1,6 +1,10 @@
#include <iostream>
#include <cstring>
#if defined(_MSC_VER) && _MSC_VER >= 1900
#include <algorithm>
#endif
#include "classes.h"
#include "eq_packet_structs.h"
#include "eqemu_exception.h"