mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-13 10:31:29 +00:00
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:
parent
7045581fdc
commit
2d375eb565
@ -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"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user