From: Pieter Lexis Date: Fri, 22 May 2015 15:57:35 +0000 (+0200) Subject: Shrink Comment from 48 to 40 bytes X-Git-Tag: dnsdist-1.0.0-alpha1~248^2~77^2~4^2~40 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7b781302779abef14a00285295c820d556dae445;p=thirdparty%2Fpdns.git Shrink Comment from 48 to 40 bytes --- diff --git a/pdns/comment.hh b/pdns/comment.hh index bb18fef382..2fd3e5ea99 100644 --- a/pdns/comment.hh +++ b/pdns/comment.hh @@ -29,16 +29,17 @@ class Comment { public: - Comment() : domain_id(0), modified_at(0) {}; + Comment() : modified_at(0), domain_id(0) {}; ~Comment() {}; // data - int domain_id; string qname; //!< the name of the associated RRset, for example: www.powerdns.com - QType qtype; //!< qtype of the associated RRset, ie A, CNAME, MX etc time_t modified_at; string account; //!< account last updating this comment string content; //!< The actual comment. Example: blah blah + + int domain_id; + QType qtype; //!< qtype of the associated RRset, ie A, CNAME, MX etc }; #endif /* PDNS_COMMENT_HH */