diff options
author | Chih-Hung Hsieh <chh@google.com> | 2016-06-10 11:07:21 -0700 |
---|---|---|
committer | Chih-Hung Hsieh <chh@google.com> | 2016-06-10 15:25:49 -0700 |
commit | 1a5fd9c155be65d49d51cd511097541897f4bb37 (patch) | |
tree | 79624b48b2b47956a8426a2f80e407ce0f56bcac /benchmarks/stdio_benchmark.cpp | |
parent | 74669e99ce73da86002fe047c73913427ef1d2a1 (diff) |
Fix misc-macro-parentheses warnings in bionic.
Add parentheses around macro arguments used beside operators,
or use constexpr for simple constants.
Bug: 28705665
Change-Id: I378c8aad92d3ec8e8c4b0440b5c2c99dfe01ce79
Diffstat (limited to 'benchmarks/stdio_benchmark.cpp')
-rw-r--r-- | benchmarks/stdio_benchmark.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/benchmarks/stdio_benchmark.cpp b/benchmarks/stdio_benchmark.cpp index cc07128d4..a556d1723 100644 --- a/benchmarks/stdio_benchmark.cpp +++ b/benchmarks/stdio_benchmark.cpp @@ -20,8 +20,7 @@ #include <benchmark/benchmark.h> -#define KB 1024 -#define MB 1024*KB +constexpr auto KB = 1024; #define AT_COMMON_SIZES \ Arg(1)->Arg(2)->Arg(3)->Arg(4)->Arg(8)->Arg(16)->Arg(32)->Arg(64)->Arg(512)-> \ |