Skip to content

Commit

Permalink
fix gcc warning of missing override (#2001)
Browse files Browse the repository at this point in the history
Co-authored-by: Lieven de Cock <[email protected]>
  • Loading branch information
killerbot242 and Lieven de Cock authored Nov 10, 2020
1 parent 14f6bd0 commit 1936ddd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/fmt/os.h
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@ class ostream final : private detail::buffer<char> {
clear();
}

void grow(size_t) final;
void grow(size_t) override final;

ostream(cstring_view path, const detail::ostream_params& params)
: file_(path, params.oflag) {
Expand Down

0 comments on commit 1936ddd

Please sign in to comment.