misc: removed unneeded MIN definition (already in misc.h)

This commit is contained in:
Martin Pulec
2023-01-17 16:08:18 +01:00
parent fc0c6adae0
commit 6bc837726d

View File

@@ -57,10 +57,6 @@
#include "utils/misc.h"
#include "utils/color_out.h"
#ifndef MIN
#define MIN(a, b) ((a) < (b) ? (a) : (b))
#endif
#define STRERROR_BUF_LEN 1024
using std::invalid_argument;