Codefactor review

This commit is contained in:
emeric
2022-05-25 21:04:35 +02:00
parent d13cb3e0ad
commit ee42e51b00
27 changed files with 2 additions and 34 deletions
@@ -28,7 +28,6 @@ class FileResourceHandler final : public IResourceHandler
FileResourceHandler(const std::filesystem::path& filePath);
private:
Wt::Http::ResponseContinuation* processRequest(const Wt::Http::Request& request, Wt::Http::Response& response) override;
static constexpr std::size_t _chunkSize {65536};
-1
View File
@@ -26,7 +26,6 @@
class IConfig
{
public:
virtual ~IConfig() = default;
// Default values are returned in case of setting not found
-1
View File
@@ -28,7 +28,6 @@
class UUID
{
public:
static std::optional<UUID> fromString(std::string_view str);
std::string_view getAsString() const { return _value; }
-1
View File
@@ -40,7 +40,6 @@ namespace Zip
class Zipper
{
public:
Zipper(const std::map<std::string, std::filesystem::path>& files, const Wt::WDateTime& lastModifiedTime = {});
static constexpr SizeType minOutputBufferSize {64};