Move include of algorithm up to top to hopefully fix issues with min and max being defined elsewhere and so compile fails

This commit is contained in:
Isaac Connor
2021-02-16 10:38:43 -05:00
parent a82247b105
commit 41dc0212e0

View File

@@ -17,6 +17,10 @@
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
//
#include <algorithm>
#include <sys/types.h>
#include <sys/stat.h>
#include "zm_monitor.h"
#include "zm_group.h"
@@ -55,9 +59,6 @@
#include "zm_libvnc_camera.h"
#endif // HAVE_LIBVNC
#include <algorithm>
#include <sys/types.h>
#include <sys/stat.h>
#if ZM_MEM_MAPPED
#include <sys/mman.h>