mirror of
https://github.com/minetest/minetest.git
synced 2025-03-14 14:22:36 +01:00
Fix missing #include
This commit is contained in:
@ -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))
|
||||
|
Reference in New Issue
Block a user