]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
Whitespace cleanup
authorFred Morcos <fred.morcos@open-xchange.com>
Tue, 12 Dec 2023 14:16:07 +0000 (15:16 +0100)
committerFred Morcos <fred.morcos@open-xchange.com>
Thu, 21 Dec 2023 14:41:41 +0000 (15:41 +0100)
pdns/statbag.hh

index 3e54e682d81b5fdf6776d24acb474da0341aaa90..3d12390114995ae54936b7bbda317de6bca24f1d 100644 (file)
@@ -38,19 +38,19 @@ public:
   StatRing& operator=(const StatRing&) = delete;
   StatRing& operator=(StatRing&&) = delete;
   StatRing(StatRing&&) = default;
-  
+
   void account(const T &item);
 
   uint64_t getSize() const;
   uint64_t getEntriesCount() const;
-  void resize(unsigned int newsize);  
+  void resize(unsigned int newsize);
   void reset();
   void setHelp(const string &str);
   string getHelp() const;
 
   vector<pair<T, unsigned int> > get() const;
 private:
-  static bool popisort(const pair<T,int> &a, const pair<T,int> &b) 
+  static bool popisort(const pair<T,int> &a, const pair<T,int> &b)
   {
     return (a.second > b.second);
   }