Skip to content

Commit 234fda4

Browse files
committed
Fix tidy build
1 parent d4da5f3 commit 234fda4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Disks/ObjectStorages/IObjectStorage.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,8 @@ struct RelativePathWithMetadata
8686
class CommandInTaskResponse
8787
{
8888
public:
89-
CommandInTaskResponse() {}
90-
CommandInTaskResponse(const std::string & task);
89+
CommandInTaskResponse() = default;
90+
explicit CommandInTaskResponse(const std::string & task);
9191

9292
bool is_parsed() const { return successfully_parsed; }
9393
void set_retry_after_us(Poco::Timestamp::TimeDiff time_us) { retry_after_us = time_us; }

0 commit comments

Comments
 (0)