Add ALOG version of LOG_ASSERT

This is now required by some projects.

Change-Id: If4015c6a9f2391b205d2886bcf7f6e51f371ce08
This commit is contained in:
Steve Block 2012-01-09 22:50:36 +00:00
parent e7e7fac974
commit a9b84a7e0b
1 changed files with 1 additions and 0 deletions

View File

@ -347,6 +347,7 @@ extern "C" {
#ifndef LOG_ASSERT
#define LOG_ASSERT(cond, ...) LOG_FATAL_IF(!(cond), ## __VA_ARGS__)
//#define LOG_ASSERT(cond) LOG_FATAL_IF(!(cond), "Assertion failed: " #cond)
#define ALOG_ASSERT LOG_ASSERT
#endif
// ---------------------------------------------------------------------