Browse Source

Merge branch 'android-build' into Release_2.1

android-build
heck 4 years ago
parent
commit
35fda5286b
  1. 7
      pEpLog.hh

7
pEpLog.hh

@ -6,6 +6,9 @@
#include <sstream> #include <sstream>
#include <thread> #include <thread>
#ifdef ANDROID
#include <android/log.h>
#endif
// pEpLog // pEpLog
// ====== // ======
@ -31,10 +34,6 @@
#ifdef NDEBUG #ifdef NDEBUG
#define pEpLog(msg) do{}while(0) #define pEpLog(msg) do{}while(0)
#else #else
#ifdef ANDROID
#include <android/log.h>
#endif
#define pEpLog(msg) \ #define pEpLog(msg) \
do { \ do { \
std::stringstream msg_ss; \ std::stringstream msg_ss; \

Loading…
Cancel
Save