This commit is contained in:
Alexey Milovidov 2019-01-24 22:50:16 +03:00
parent a28f0acf09
commit 304c7b0386

View File

@ -21,8 +21,6 @@ namespace ErrorCodes
}
// Converter -----------------------------------------------------------------------------------------------------------
class ProtobufWriter::Converter : private boost::noncopyable
{
public:
@ -128,8 +126,6 @@ protected:
};
// ToStringConverter ---------------------------------------------------------------------------------------------------
class ProtobufWriter::ToStringConverter : public Converter
{
public:
@ -232,8 +228,6 @@ private:
};
// ToNumberConverter ---------------------------------------------------------------------------------------------------
template <typename T>
class ProtobufWriter::ToNumberConverter : public Converter
{
@ -396,8 +390,6 @@ private:
};
// ToBoolConverter -----------------------------------------------------------------------------------------------------
class ProtobufWriter::ToBoolConverter : public Converter
{
public:
@ -451,8 +443,6 @@ private:
};
// ToEnumConverter -----------------------------------------------------------------------------------------------------
class ProtobufWriter::ToEnumConverter : public Converter
{
public:
@ -552,8 +542,6 @@ private:
};
// ProtobufWriter ------------------------------------------------------------------------------------------------------
ProtobufWriter::ProtobufWriter(WriteBuffer & out, const google::protobuf::Descriptor * message_type) : simple_writer(out)
{
enumerateFieldsInWriteOrder(message_type);