From ed5fb0e9cf4acc2d7a2622b26d7c638dc3ae2478 Mon Sep 17 00:00:00 2001 From: bert hubert Date: Wed, 18 Apr 2018 11:01:12 +0200 Subject: [PATCH] silence warning --- tdns/record-types.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tdns/record-types.hh b/tdns/record-types.hh index 4b88818..6dcdbb3 100644 --- a/tdns/record-types.hh +++ b/tdns/record-types.hh @@ -245,7 +245,7 @@ struct ClockTXTGen : RRGen return std::make_unique(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; };