silence warning

This commit is contained in:
bert hubert 2018-04-18 11:01:12 +02:00
parent 4f26070e20
commit ed5fb0e9cf

View File

@ -245,7 +245,7 @@ struct ClockTXTGen : RRGen
return std::make_unique<ClockTXTGen>(format);
}
void toMessage(DNSMessageWriter& dpw) override;
std::string toString() const { return d_format; }
std::string toString() const override { return d_format; }
DNSType getType() const override { return DNSType::TXT; }
std::string d_format;
};