diff options
author | David Kalnischkies <kalnischkies@gmail.com> | 2011-08-11 23:30:09 +0200 |
---|---|---|
committer | David Kalnischkies <kalnischkies@gmail.com> | 2011-08-11 23:30:09 +0200 |
commit | f5a34606b4a910e7b7b984940fb2d12681a2dd3b (patch) | |
tree | f045b545dec217546f74bf21c274db4f747ddee0 /methods/mirror.cc | |
parent | 1842a17db2ecebaf7b19de574cb4cd87c687202c (diff) |
follow the recommendation of cppcheck to make some method methods (scnr)
const and initial mostly Debug member values in the constructors
Diffstat (limited to 'methods/mirror.cc')
-rw-r--r-- | methods/mirror.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/methods/mirror.cc b/methods/mirror.cc index 565df5327..cb24a06cf 100644 --- a/methods/mirror.cc +++ b/methods/mirror.cc @@ -54,7 +54,7 @@ using namespace std; */ MirrorMethod::MirrorMethod() - : HttpMethod(), DownloadedMirrorFile(false) + : HttpMethod(), DownloadedMirrorFile(false), Debug(false) { }; |