From 1c21ab45b3af4272e41d11202f062210205e1cdd Mon Sep 17 00:00:00 2001 From: Chris Hofstaedtler Date: Tue, 3 Apr 2018 11:44:31 +0200 Subject: [PATCH] Fix reorder warning: field 'd_rname' will be initialized after field 'd_st' --- pdns/dnsrecords.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pdns/dnsrecords.hh b/pdns/dnsrecords.hh index d402227f3c..c23e194087 100644 --- a/pdns/dnsrecords.hh +++ b/pdns/dnsrecords.hh @@ -517,9 +517,9 @@ public: includeboilerplate(SOA) SOARecordContent(const DNSName& mname, const DNSName& rname, const struct soatimes& st); - struct soatimes d_st; DNSName d_mname; DNSName d_rname; + struct soatimes d_st; }; class NSECRecordContent : public DNSRecordContent -- 2.47.2