From 11d3c3f7ef7a14135fed2608226a5ffe9b10c640 Mon Sep 17 00:00:00 2001 From: Nicolas Fauvet Date: Tue, 17 Jan 2017 16:04:49 +0100 Subject: [PATCH] fix indent --- fmt/ostream.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/fmt/ostream.h b/fmt/ostream.h index dff0b9fe..b35c414b 100644 --- a/fmt/ostream.h +++ b/fmt/ostream.h @@ -77,14 +77,14 @@ void write(std::ostream &os, Writer &w); template class is_streamable { - template - static auto test(int) -> decltype(std::declval() << std::declval(), std::true_type()); + template + static auto test(int) -> decltype(std::declval() << std::declval(), std::true_type()); - template - static auto test(...) -> std::false_type; + template + static auto test(...) -> std::false_type; public: - static constexpr bool value = decltype(test(0))::value; + static constexpr bool value = decltype(test(0))::value; }; } // namespace internal @@ -118,8 +118,8 @@ FMT_VARIADIC(void, print, std::ostream &, CStringRef) template typename std::enable_if< !std::is_same< - typename std::remove_cv::type>::type, - char * + typename std::remove_cv::type>::type, + char * >::value, BasicWriter& >::type