Fixed compilation issues with mingw
parent
91c751a03a
commit
d809ca98c1
|
@ -72,12 +72,12 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
#include "../../code/StringComparison.h" // ASSIMP_stricmp and ASSIMP_strincmp
|
#include "../../code/StringComparison.h" // ASSIMP_stricmp and ASSIMP_strincmp
|
||||||
|
|
||||||
// in order for std::min and std::max to behave properly
|
// in order for std::min and std::max to behave properly
|
||||||
/*#ifdef min
|
#ifndef max
|
||||||
#undef min
|
#define max(a,b) (((a) > (b)) ? (a) : (b))
|
||||||
|
#endif // max
|
||||||
|
#ifndef min
|
||||||
|
#define min(a,b) (((a) < (b)) ? (a) : (b))
|
||||||
#endif // min
|
#endif // min
|
||||||
#ifdef max
|
|
||||||
#undef max
|
|
||||||
#endif // min*/
|
|
||||||
|
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue