summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChih-Hung Hsieh <chh@google.com>2016-05-18 16:25:45 +0000
committerandroid-build-merger <android-build-merger@google.com>2016-05-18 16:25:45 +0000
commite3c2155db8e4b3a01a44d4949e32a0bb032ec6d5 (patch)
treec8afb3190ecd18bc30c249ae547c4378d41dd408
parent64f2136615ec46c0d22708299ce089a58354ce99 (diff)
parent8558b8c8097eb05b957bec3533629c13e20ba874 (diff)
downloadwebview-e3c2155db8e4b3a01a44d4949e32a0bb032ec6d5.tar.gz
Merge "Fix misc-macro-parentheses warnings."
am: 8558b8c809 * commit '8558b8c8097eb05b957bec3533629c13e20ba874': Fix misc-macro-parentheses warnings. Change-Id: I7853b5533403bfb9faf2fbc69b274c5fe690c198
-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 {