comparison Core/HttpServer/FilesystemHttpSender.h @ 2223:29689b30f9ae

cppcheck
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 13 Dec 2016 15:28:05 +0100
parents b1291df2f780
children a3a65de1840f
comparison
equal deleted inserted replaced
2222:21713ce8717b 2223:29689b30f9ae
48 size_t chunkSize_; 48 size_t chunkSize_;
49 49
50 void Initialize(const boost::filesystem::path& path); 50 void Initialize(const boost::filesystem::path& path);
51 51
52 public: 52 public:
53 FilesystemHttpSender(const std::string& path) 53 explicit FilesystemHttpSender(const std::string& path)
54 { 54 {
55 Initialize(path); 55 Initialize(path);
56 } 56 }
57 57
58 FilesystemHttpSender(const boost::filesystem::path& path) 58 explicit FilesystemHttpSender(const boost::filesystem::path& path)
59 { 59 {
60 Initialize(path); 60 Initialize(path);
61 } 61 }
62 62
63 FilesystemHttpSender(const FilesystemStorage& storage, 63 FilesystemHttpSender(const FilesystemStorage& storage,