mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 23:52:03 +00:00
Explicitly default move/copy constructors
This commit is contained in:
parent
ef57b759e0
commit
bc52758e4d
@ -102,6 +102,13 @@ public:
|
||||
return prompter.getHints(name, getAllRegisteredNames());
|
||||
}
|
||||
|
||||
IHints() = default;
|
||||
|
||||
IHints(const IHints &) = default;
|
||||
IHints(IHints &&) = default;
|
||||
IHints & operator=(const IHints &) = default;
|
||||
IHints & operator=(IHints &&) = default;
|
||||
|
||||
virtual ~IHints() = default;
|
||||
|
||||
private:
|
||||
|
Loading…
Reference in New Issue
Block a user