From a3a49a48e6a127c62c6b35f8753927a26c0ace4d Mon Sep 17 00:00:00 2001 From: "LUDA-PC\\ludek.vodicka" Date: Sun, 22 Oct 2017 17:01:26 +0200 Subject: [PATCH] updated tabs to spaces --- test/format-test.cc | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/test/format-test.cc b/test/format-test.cc index 03b1f326..f512ef48 100644 --- a/test/format-test.cc +++ b/test/format-test.cc @@ -1633,19 +1633,19 @@ TEST(FormatTest, FormatMessageExample) { class test_class { public: - std::string format_message(int id, const char *format,const fmt::ArgList &args) const { - MemoryWriter w; - w.write("[{}] ", id); - w.write(format, args); - return w.str(); - } - FMT_VARIADIC_CONST(std::string, format_message, int, const char *) + std::string format_message(int id, const char *format,const fmt::ArgList &args) const { + MemoryWriter w; + w.write("[{}] ", id); + w.write(format, args); + return w.str(); + } + FMT_VARIADIC_CONST(std::string, format_message, int, const char *) }; TEST(FormatTest, ConstFormatMessage) { - test_class c; - EXPECT_EQ("[42] something happened", - c.format_message(42, "{} happened", "something")); + test_class c; + EXPECT_EQ("[42] something happened", + c.format_message(42, "{} happened", "something")); } #if FMT_USE_VARIADIC_TEMPLATES