MSVC 2015 wants <algorithm> #included for std::min. If any other compilers require the same, feel free to alter the #if test.

This commit is contained in:
af4t 2015-12-30 02:17:09 -05:00
parent 7045581fdc
commit 2d375eb565

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"