diff options
author | mtklein <mtklein@chromium.org> | 2014-06-30 12:33:11 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-06-30 12:33:11 -0700 |
commit | 170e00d6403c40114d6ffb800a5bfab73e0b0f34 (patch) | |
tree | 4a4c6af5e09842d4079c16174bf522679456d916 /bench | |
parent | 761b2509d59787a8920b2e98911cff9f88e0eb4e (diff) |
Have Clang builders build in C++11 mode.
This ought to get us a little ahead on the transition. Only minor fixes
are needed. The one in MemoryBench is the most interesting: what used
to unambiguously be interpreted as concatenating two string literals is
now also ambiguously a user-defined literal; adding a space
disambiguates.
BUG=skia:
R=bungeman@google.com, mtklein@google.com
Author: mtklein@chromium.org
Review URL: https://codereview.chromium.org/361723002
Diffstat (limited to 'bench')
-rw-r--r-- | bench/MemoryBench.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bench/MemoryBench.cpp b/bench/MemoryBench.cpp index 3fc46dccf4..f8af1683b0 100644 --- a/bench/MemoryBench.cpp +++ b/bench/MemoryBench.cpp @@ -87,7 +87,7 @@ public: } else if (write) { fName.appendf("_w"); } - fName.appendf("_"SK_SIZE_T_SPECIFIER, num); + fName.appendf("_" SK_SIZE_T_SPECIFIER, num); } virtual bool isSuitableFor(Backend backend) SK_OVERRIDE { |