From: Arvin Schnell Date: Wed, 2 Dec 2020 10:35:56 +0000 (+0100) Subject: - code cleanup X-Git-Tag: v0.8.15~8^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F606%2Fhead;p=thirdparty%2Fsnapper.git - code cleanup --- 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; };