You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
398 B
17 lines
398 B
# In Android, prefer Android's libbase definitions for LIKELY/UNLIKELY macros.
|
|
|
|
--- a/base/compiler_specific.h
|
|
+++ b/base/compiler_specific.h
|
|
@@ -7,6 +7,11 @@
|
|
|
|
#include "build/build_config.h"
|
|
|
|
+#if defined(ANDROID)
|
|
+// Prefer Android's libbase definitions to our own.
|
|
+#include <android-base/macros.h>
|
|
+#endif // defined(ANDROID)
|
|
+
|
|
#if defined(COMPILER_MSVC)
|
|
|
|
// For _Printf_format_string_.
|