fix gcc warning of missing override (#2001)

Co-authored-by: Lieven de Cock <killerbot@linux-2x3u.suse>
This commit is contained in:
Lieven de Cock
2020-11-10 16:57:21 +01:00
committed by GitHub
parent 14f6bd0f4e
commit 1936dddc3c

View File

@ -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) {