Removed dependency on algorithm (#748)

pull/763/head
jgromes 2023-05-15 20:34:19 +02:00
rodzic acf683b91b
commit c2b9e19551
1 zmienionych plików z 7 dodań i 3 usunięć

Wyświetl plik

@ -314,11 +314,15 @@
#define OCT 8
#define BIN 2
#include <algorithm>
#include <stdint.h>
using std::max;
using std::min;
#if !defined(min)
#define min(a,b) ((a)<(b)?(a):(b))
#endif
#if !defined(max)
#define max(a,b) ((a)>(b)?(a):(b))
#endif
#endif
/*