Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
CID
mirrors
libpEpAdapter
Compare Revisions
826d5f63bba04988dae9cb02501078723cf5f97f...3f880af5d8a617383fd63b7c16a03b2d036548d9
Source
3f880af5d8a617383fd63b7c16a03b2d036548d9
Select Git revision
...
Target
826d5f63bba04988dae9cb02501078723cf5f97f
Select Git revision
Compare
Commits (2)
BUILD: use pEpEngine=Release_2.1.23
· 1270d147
Matthias Heckmann
authored
Mar 22, 2021
1270d147
Android build: Always include android/log.h not just on debug
· 3f880af5
Hussein
authored
Mar 29, 2021
3f880af5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
5 deletions
+4
-5
DEPENDENCIES
DEPENDENCIES
+1
-1
pEpLog.hh
pEpLog.hh
+3
-4
No files found.
DEPENDENCIES
View file @
3f880af5
# 1st Party Dependencies
# 1st Party Dependencies
## Prefer git tags instead of SHA hashes when possible.
## Prefer git tags instead of SHA hashes when possible.
pEpEngine=Release_2.1.2
2
pEpEngine=Release_2.1.2
3
sequoia=365d00a08bec6a5a48d48a7c7893d78c27092b59
sequoia=365d00a08bec6a5a48d48a7c7893d78c27092b59
pEpLog.hh
View file @
3f880af5
...
@@ -6,6 +6,9 @@
...
@@ -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 @@
...
@@ -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; \
...
...