summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChih-hung Hsieh <chh@google.com>2016-05-18 16:33:25 +0000
committerandroid-build-merger <android-build-merger@google.com>2016-05-18 16:33:25 +0000
commit0274e1e45fae5ffa19949c7ab67b7311c6e41893 (patch)
tree4f0c7d18e621831e197479df593ac19d96c27d0f
parent0e34debb3e48693d28d2190c20a752c3a7b0cb21 (diff)
parenta6f1ecc10e0d8734bac9f3a4d3290d9b1df0344b (diff)
downloadwebview-0274e1e45fae5ffa19949c7ab67b7311c6e41893.tar.gz
Merge "Fix misc-macro-parentheses warnings." am: 8558b8c809 am: e3c2155db8 am: 5b27453aa1
am: a6f1ecc10e * commit 'a6f1ecc10e0d8734bac9f3a4d3290d9b1df0344b': Fix misc-macro-parentheses warnings. Change-Id: Idc29409965a3931c70f9d45aab4408c44bcf2859
-rw-r--r--chromium/plat_support/draw_gl_functor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/chromium/plat_support/draw_gl_functor.cpp b/chromium/plat_support/draw_gl_functor.cpp
index c35d961..25f4877 100644
--- a/chromium/plat_support/draw_gl_functor.cpp
+++ b/chromium/plat_support/draw_gl_functor.cpp
@@ -31,7 +31,7 @@
#include <utils/Log.h>
#define NELEM(x) ((int) (sizeof(x) / sizeof((x)[0])))
-#define COMPILE_ASSERT(expr, err) static const char err[(expr) ? 1 : -1] = "";
+#define COMPILE_ASSERT(expr, err) static const char (err)[(expr) ? 1 : -1] = "";
namespace android {
namespace {