mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-01 12:01:58 +00:00
Fix clang warnings.
This commit is contained in:
parent
7e22373270
commit
fe756f9444
@ -7,8 +7,9 @@
|
||||
namespace DB
|
||||
{
|
||||
|
||||
JSONCompactRowOutputFormat::JSONCompactRowOutputFormat(WriteBuffer & out_, const Block & header, const FormatSettings & settings)
|
||||
: JSONRowOutputFormat(out_, header, settings)
|
||||
JSONCompactRowOutputFormat::JSONCompactRowOutputFormat(
|
||||
WriteBuffer & out_, const Block & header, const FormatSettings & settings_)
|
||||
: JSONRowOutputFormat(out_, header, settings_)
|
||||
{
|
||||
}
|
||||
|
||||
|
@ -16,7 +16,7 @@ struct FormatSettings;
|
||||
class JSONCompactRowOutputFormat : public JSONRowOutputFormat
|
||||
{
|
||||
public:
|
||||
JSONCompactRowOutputFormat(WriteBuffer & out_, const Block & header, const FormatSettings & settings);
|
||||
JSONCompactRowOutputFormat(WriteBuffer & out_, const Block & header, const FormatSettings & settings_);
|
||||
|
||||
String getName() const override { return "JSONCompactRowOutputFormat"; }
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user