From 4a7369081315609a99d4b083a6a9ebf293a39b1d Mon Sep 17 00:00:00 2001 From: dominic Date: Tue, 18 Feb 2020 22:17:54 +0100 Subject: [PATCH] run clang-format --- include/fmt/core.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/fmt/core.h b/include/fmt/core.h index 85fdca29..1bb58793 100644 --- a/include/fmt/core.h +++ b/include/fmt/core.h @@ -633,8 +633,8 @@ template class buffer { T* begin() FMT_NOEXCEPT { return ptr_; } T* end() FMT_NOEXCEPT { return ptr_ + size_; } - const T * begin() const FMT_NOEXCEPT { return ptr_; } - const T * end() const FMT_NOEXCEPT { return ptr_ + size_; } + const T* begin() const FMT_NOEXCEPT { return ptr_; } + const T* end() const FMT_NOEXCEPT { return ptr_ + size_; } /** Returns the size of this buffer. */ std::size_t size() const FMT_NOEXCEPT { return size_; }