diff --git a/include/fmt/core.h b/include/fmt/core.h index 9ad32e91..6f75b353 100644 --- a/include/fmt/core.h +++ b/include/fmt/core.h @@ -1500,14 +1500,11 @@ class appender : public std::back_insert_iterator> { using _Unchecked_type = appender; // Mark iterator as checked. auto operator++() -> appender& { - base::operator++(); return *this; } auto operator++(int) -> appender { - auto tmp = *this; - ++*this; - return tmp; + return *this; } };