]> granicus.if.org Git - pdns/commitdiff
Align ZoneParserTNG to 8-byte boundries
authorPieter Lexis <pieter.lexis@powerdns.com>
Tue, 26 May 2015 16:07:16 +0000 (18:07 +0200)
committerPieter Lexis <pieter.lexis@powerdns.com>
Fri, 19 Jun 2015 20:51:48 +0000 (22:51 +0200)
pdns/zoneparser-tng.hh

index 79e58a8d4b7477883810cf59922d9cda56474a07..ca4f71204da15a5678ec6f5aa651a442c0c33367 100644 (file)
@@ -45,26 +45,26 @@ private:
   void stackFile(const std::string& fname);
   unsigned makeTTLFromZone(const std::string& str);
   string getLineOfFile();
+  struct filestate {
+    filestate(FILE* fp, string filename) : d_fp(fp), d_filename(filename), d_lineno(0){}
+    FILE *d_fp;
+    string d_filename;
+    int d_lineno;
+  };
+
   string d_reldir;
   string d_line;
   string d_prevqname;
   string d_zonename;
+  string d_templateline;
   vector<string> d_zonedata;
   vector<string>::iterator d_zonedataline;
+  std::stack<filestate> d_filestates;
+  parts_t d_templateparts;
   int d_defaultttl;
+  uint32_t d_templatecounter, d_templatestop, d_templatestep;
   bool d_havedollarttl;
   bool d_fromfile;
-  uint32_t d_templatecounter, d_templatestop, d_templatestep;
-  string d_templateline;
-  parts_t d_templateparts;
-
-  struct filestate {
-    filestate(FILE* fp, string filename) : d_fp(fp), d_filename(filename), d_lineno(0){}
-    FILE *d_fp;
-    string d_filename;
-    int d_lineno;
-  };
-  std::stack<filestate> d_filestates;
 };
 
 #endif