From 0fd90dfdf11c648acca2690ab1a55bdf52ca380f Mon Sep 17 00:00:00 2001 From: Guillaume Fraux Date: Wed, 26 Sep 2018 13:22:49 +0000 Subject: [PATCH] Fix compilation with intel compilers (ICC/ICPC) v14.0 --- include/fmt/format.h | 3 ++- test/format-test.cc | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/include/fmt/format.h b/include/fmt/format.h index 9f2a1d2fef35..3d166f56b47f 100644 --- a/include/fmt/format.h +++ b/include/fmt/format.h @@ -2159,7 +2159,8 @@ FMT_CONSTEXPR void parse_format_string( } Handler &handler_; } write{handler}; - auto begin = format_str.data(), end = begin + format_str.size(); + auto begin = format_str.data(); + auto end = begin + format_str.size(); while (begin != end) { // Doing two passes with memchr (one for '{' and another for '}') is up to // 2.5x faster than the naive one-pass implementation on big format strings. diff --git a/test/format-test.cc b/test/format-test.cc index 31a76c3a3065..538a35348c69 100644 --- a/test/format-test.cc +++ b/test/format-test.cc @@ -1577,7 +1577,7 @@ struct explicitly_convertible_to_string_like { typename String, typename = typename std::enable_if< std::is_constructible::value>::type> - explicit operator String() const { return String("foo", 3u); } + FMT_EXPLICIT operator String() const { return String("foo", 3u); } }; TEST(FormatterTest, FormatExplicitlyConvertibleToStringLike) {