Kaydet (Commit) 50bab860 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

-Werror=unused-macros

Change-Id: I3c64ed78577988767a7da859e68a7f63f890f7dc
üst 3a550b77
...@@ -54,14 +54,9 @@ ...@@ -54,14 +54,9 @@
#include "osl/detail/android-bootstrap.h" #include "osl/detail/android-bootstrap.h"
#undef LOGI #undef LOGI
#undef LOGW
#define LOGI(...) ((void)__android_log_print(ANDROID_LOG_INFO, "lo-bootstrap", __VA_ARGS__)) #define LOGI(...) ((void)__android_log_print(ANDROID_LOG_INFO, "lo-bootstrap", __VA_ARGS__))
#define LOGW(...) ((void)__android_log_print(ANDROID_LOG_WARN, "lo-bootstrap", __VA_ARGS__))
#define LOGE(...) ((void)__android_log_print(ANDROID_LOG_ERROR, "lo-bootstrap", __VA_ARGS__)) #define LOGE(...) ((void)__android_log_print(ANDROID_LOG_ERROR, "lo-bootstrap", __VA_ARGS__))
#define LOGF(...) ((void)__android_log_print(ANDROID_LOG_FATAL, "lo-bootstrap", __VA_ARGS__))
#define ROUND_DOWN(ptr,multiple) (void *)(((unsigned) (ptr)) & ~((multiple)-1))
#define MAX(a,b) ((a) > (b) ? (a) : (b)) #define MAX(a,b) ((a) > (b) ? (a) : (b))
...@@ -80,8 +75,6 @@ static JavaVM *the_java_vm; ...@@ -80,8 +75,6 @@ static JavaVM *the_java_vm;
/* compression methods */ /* compression methods */
#define STORE 0 #define STORE 0
#define DEFLATE 8
#define LZMA 14
struct local_file_header { struct local_file_header {
uint32_t signature; uint32_t signature;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment