Skip to content

Commit

Permalink
Whitespace cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
fredmorcos committed Dec 21, 2023
1 parent 2c03bdc commit 6f7df50
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pdns/statbag.hh
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit 6f7df50

Please sign in to comment.