Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion AndroidUtil/AndroidUtil.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@

#include "android/webkit/WebView.hpp"

#ifdef __ANDROID__
#if defined(__ANDROID__) && !defined(DISABLE_ANDROID_LOG)

#include <android/log.h>

Expand Down
2 changes: 1 addition & 1 deletion Util.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
*/
#define STATIC_VAR(type,name,value) static type& name(){ static type res(value); return res; }

#ifdef __ANDROID__
#if defined(__ANDROID__) && !defined(DISABLE_ANDROID_LOG)
#include <android/log.h>

#define LOG_TAG "MitsokoLog"
Expand Down