From 1936dddc3c53c1c0db55a665cf419dc7a257ba62 Mon Sep 17 00:00:00 2001 From: Lieven de Cock Date: Tue, 10 Nov 2020 16:57:21 +0100 Subject: [PATCH] fix gcc warning of missing override (#2001) Co-authored-by: Lieven de Cock --- include/fmt/os.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/fmt/os.h b/include/fmt/os.h index 7e181c86..e91a2af5 100644 --- a/include/fmt/os.h +++ b/include/fmt/os.h @@ -388,7 +388,7 @@ class ostream final : private detail::buffer { 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) {