Add min() macro definition

It's not defined in MSVC and not supported by C standards
pull/3/head
Hleb Valoshka 2019-04-07 21:56:35 +03:00
parent 6bc84833be
commit 53845ad72e
1 changed files with 4 additions and 0 deletions

View File

@ -19,6 +19,10 @@
#include <cmath>
#include <ctime>
#ifndef min
#define min(a, b) ((a) < (b) ? (a) : (b))
#endif
using namespace std;