mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-29 19:12:03 +00:00
fix clang build
This commit is contained in:
parent
0f8e5f8522
commit
be6a8d6118
@ -61,6 +61,7 @@ struct Request
|
|||||||
{
|
{
|
||||||
Request() = default;
|
Request() = default;
|
||||||
Request(const Request &) = default;
|
Request(const Request &) = default;
|
||||||
|
Request & operator=(const Request &) = default;
|
||||||
virtual ~Request() = default;
|
virtual ~Request() = default;
|
||||||
virtual String getPath() const = 0;
|
virtual String getPath() const = 0;
|
||||||
virtual void addRootPath(const String & /* root_path */) {}
|
virtual void addRootPath(const String & /* root_path */) {}
|
||||||
@ -76,6 +77,7 @@ struct Response
|
|||||||
int32_t error = 0;
|
int32_t error = 0;
|
||||||
Response() = default;
|
Response() = default;
|
||||||
Response(const Response &) = default;
|
Response(const Response &) = default;
|
||||||
|
Response & operator=(const Response &) = default;
|
||||||
virtual ~Response() = default;
|
virtual ~Response() = default;
|
||||||
virtual void removeRootPath(const String & /* root_path */) {}
|
virtual void removeRootPath(const String & /* root_path */) {}
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user