]> git.ipfire.org Git - thirdparty/snapper.git/commitdiff
- code cleanup 606/head
authorArvin Schnell <aschnell@suse.de>
Wed, 2 Dec 2020 10:35:56 +0000 (11:35 +0100)
committerArvin Schnell <aschnell@suse.de>
Wed, 2 Dec 2020 10:35:56 +0000 (11:35 +0100)
client/utils/GetOpts.h

index c681d3d2e735a2bbb4ef15fc79cf386c07c9df04..d97cbfb8ca804a1588090b08bacc2c89bcb17d89 100644 (file)
@@ -61,8 +61,6 @@ namespace snapper
     {
     public:
 
-       ParsedOpts() = default;         // TODO remove
-
        ParsedOpts(const map<string, string>& args) : args(args) {}
 
        using const_iterator = map<string, string>::const_iterator;
@@ -75,7 +73,7 @@ namespace snapper
 
     private:
 
-       map<string, string> args;       // TODO make const
+       const map<string, string> args;
 
     };