Fix missing #include

This commit is contained in:
PilzAdam 2015-10-27 15:55:34 +01:00
parent 27eed1389b
commit c406438b95
1 changed files with 2 additions and 0 deletions

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))