From 0ddc7dbc95ca6fb4c4a62a3c027104d6dd71fc3b Mon Sep 17 00:00:00 2001
From: Marcus Müller <mmueller@gnuradio.org>
Date: Fri, 30 Oct 2020 18:22:33 +0100
Subject: modernization: `override` instead of virtual in all compilation units

---
 gr-blocks/lib/file_meta_source_impl.h | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

(limited to 'gr-blocks/lib/file_meta_source_impl.h')

diff --git a/gr-blocks/lib/file_meta_source_impl.h b/gr-blocks/lib/file_meta_source_impl.h
index 6d3c72ff46..8b2d5332b6 100644
--- a/gr-blocks/lib/file_meta_source_impl.h
+++ b/gr-blocks/lib/file_meta_source_impl.h
@@ -53,11 +53,11 @@ public:
                           bool detached_header = false,
                           const std::string& hdr_filename = "");
 
-    ~file_meta_source_impl();
+    ~file_meta_source_impl() override;
 
-    bool open(const std::string& filename, const std::string& hdr_filename = "");
-    void close();
-    void do_update();
+    bool open(const std::string& filename, const std::string& hdr_filename = "") override;
+    void close() override;
+    void do_update() override;
 
     int work(int noutput_items,
              gr_vector_const_void_star& input_items,
-- 
cgit v1.2.3