From 840743f31287d53c56cbd61c80b92811a335fcba Mon Sep 17 00:00:00 2001 From: Severin Gsponer Date: Thu, 6 Feb 2020 02:18:55 +0000 Subject: [PATCH] Remove extra ; Removes a extra ; that breaks build with gcc and `-Werror=pedantic`. --- include/indicators/details/stream_helper.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/indicators/details/stream_helper.hpp b/include/indicators/details/stream_helper.hpp index 69d0841..ce6192e 100644 --- a/include/indicators/details/stream_helper.hpp +++ b/include/indicators/details/stream_helper.hpp @@ -67,7 +67,7 @@ inline std::ostream &write_duration(std::ostream &os, std::chrono::nanoseconds n os << setw(2) << m.count() << "m:" << setw(2) << s.count() << 's'; os.fill(fill); return os; -}; +} class BlockProgressScaleWriter { @@ -136,4 +136,4 @@ private: }; } -} \ No newline at end of file +}