From: Fred Morcos Date: Tue, 12 Dec 2023 14:16:07 +0000 (+0100) Subject: Whitespace cleanup X-Git-Tag: auth-4.9.0-alpha1~23^2~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6f7df50a80a80d8f3825aa0be5fdd35481a2eafb;p=thirdparty%2Fpdns.git Whitespace cleanup --- diff --git a/pdns/statbag.hh b/pdns/statbag.hh index 3e54e682d8..3d12390114 100644 --- a/pdns/statbag.hh +++ b/pdns/statbag.hh @@ -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 > get() const; private: - static bool popisort(const pair &a, const pair &b) + static bool popisort(const pair &a, const pair &b) { return (a.second > b.second); }