From da2441accab3dedcdb4f6e1562f88ea56a8b02b9 Mon Sep 17 00:00:00 2001 From: Arvin Schnell Date: Wed, 2 Dec 2020 11:35:56 +0100 Subject: [PATCH] - code cleanup --- client/utils/GetOpts.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/client/utils/GetOpts.h b/client/utils/GetOpts.h index c681d3d2..d97cbfb8 100644 --- a/client/utils/GetOpts.h +++ b/client/utils/GetOpts.h @@ -61,8 +61,6 @@ namespace snapper { public: - ParsedOpts() = default; // TODO remove - ParsedOpts(const map& args) : args(args) {} using const_iterator = map::const_iterator; @@ -75,7 +73,7 @@ namespace snapper private: - map args; // TODO make const + const map args; }; -- 2.47.3