From e18e8eee0e04e936abee1afdf86b8d29e13ec3a7 Mon Sep 17 00:00:00 2001 From: Vasile Vilvoiu Date: Thu, 21 Oct 2021 22:26:48 +0300 Subject: Remove redundant const qualifier. --- src/configuration.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/configuration.hpp b/src/configuration.hpp index 0cc9197..dec0e0c 100644 --- a/src/configuration.hpp +++ b/src/configuration.hpp @@ -102,7 +102,7 @@ public: Configuration GetForLive() const; const auto & GetInputFilename() const { return input_filename_; } const auto & GetOutputFilename() const { return output_filename_; } - const auto MustDumpToStdout() const { return dump_to_stdout_; } + auto MustDumpToStdout() const { return dump_to_stdout_; } /* input getters */ auto GetBlockSize() const { return block_size_; } -- cgit v1.2.3