From e0122ea82f6f9bdb0d901fa5da0cc803eb0fafa1 Mon Sep 17 00:00:00 2001 From: Hussein Kasem Date: Wed, 3 Mar 2021 22:24:05 +0100 Subject: [PATCH] Android Build: Add android/log.h include --- pEpLog.hh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pEpLog.hh b/pEpLog.hh index dc5ef6c..16854bf 100644 --- a/pEpLog.hh +++ b/pEpLog.hh @@ -31,6 +31,10 @@ #ifdef NDEBUG #define pEpLog(msg) do{}while(0) #else + #ifdef ANDROID + #include + #endif + #define pEpLog(msg) \ do { \ std::stringstream msg_ss; \