Merge pull request #180 from stweil/master

Remove unneeded definition for NULL
This commit is contained in:
zdenop 2016-01-05 17:22:57 +01:00
commit 6f6953a972

View File

@ -140,10 +140,6 @@ typedef unsigned char BOOL8;
#define FALSE 0
#endif
#ifndef NULL
#define NULL 0L
#endif
// Return true if x is within tolerance of y
template<class T> bool NearlyEqual(T x, T y, T tolerance) {
T diff = x - y;