Merge pull request #240 from zeux/nominmax

Remove redundant definitions of min/max
This commit is contained in:
Rich Geldreich
2021-06-15 19:21:08 -04:00
committed by GitHub

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