utility library using ++11
- Windows(Visual Studio 2012)
- MacOSX/iOS(Xcode)
- Linux
- Minimal Logger with Milliseconds time
#define DEBUG_LOG(fmt,...)
DEBUG_LOG("abc[%d]", 5);
2015-09-05 00:06:15.288 -[cpp11libtest testLogger] [Line:37] abc[5]
- Float zero compare
bool IsZero(float val);
IsZero( (float)0.0000001 ) // true
MIT License