Commit fc2a376d authored by Stefan Weil's avatar Stefan Weil Committed by Victor Zverovich

Remove two expressions which had no effect (reported by LGTM)

Signed-off-by: default avatarStefan Weil <sw@weilnetz.de>
parent c5aafd8f
......@@ -1500,14 +1500,11 @@ class appender : public std::back_insert_iterator<detail::buffer<char>> {
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;
}
};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment