Final warning fixes

This commit is contained in:
Alexander Babikov
2022-04-14 07:03:14 +05:00
parent 710d34db97
commit 6862781b07
2 changed files with 4 additions and 2 deletions

View File

@@ -42,6 +42,9 @@
#ifdef MAX
#undef MAX
#endif
#ifdef ABS
#undef ABS
#endif
#define MIN(a, b) ((a) < (b) ? (a) : (b))
#define MAX(a, b) ((a) > (b) ? (a) : (b))