1
0
mirror of https://github.com/minetest/minetest.git synced 2024-09-20 19:40:18 +02:00

Fix missing #include

This commit is contained in:
PilzAdam 2015-10-27 15:55:34 +01:00
parent 27eed1389b
commit c406438b95

View File

@ -20,6 +20,8 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#ifndef BASICMACROS_HEADER
#define BASICMACROS_HEADER
#include <algorithm>
#define ARRLEN(x) (sizeof(x) / sizeof((x)[0]))
#define MYMIN(a, b) ((a) < (b) ? (a) : (b))