Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a9b84a7e authored by Steve Block's avatar Steve Block
Browse files

Add ALOG version of LOG_ASSERT

This is now required by some projects.

Change-Id: If4015c6a9f2391b205d2886bcf7f6e51f371ce08
parent e7e7fac9
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -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

// ---------------------------------------------------------------------