mirror of
https://github.com/BinomialLLC/basis_universal.git
synced 2026-08-19 17:49:31 +00:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user