Remove redundant definitions of min/max

These aren't used and they conflict with other sources in single-source
build.
This commit is contained in:
Arseny Kapoulkine
2021-06-06 22:04:31 -07:00
parent ba1c3e40f1
commit 35c42cb00b

View File

@@ -15,14 +15,6 @@
#include "basisu_resampler.h"
#include "basisu_resampler_filters.h"
#ifndef max
#define max(a, b) (((a) > (b)) ? (a) : (b))
#endif
#ifndef min
#define min(a, b) (((a) < (b)) ? (a) : (b))
#endif
#define RESAMPLER_DEBUG 0
namespace basisu