From 88072a71c36e0adfff8d2fd01b98f05188c6c03c Mon Sep 17 00:00:00 2001 From: Remi Gacogne Date: Thu, 21 Aug 2025 16:18:56 +0200 Subject: [PATCH] dnsdist: Remove unused `BasicQPSLimiter` and `QPSLimiter` ctors Signed-off-by: Remi Gacogne --- pdns/dnsdistdist/dnsdist.hh | 9 --------- 1 file changed, 9 deletions(-) diff --git a/pdns/dnsdistdist/dnsdist.hh b/pdns/dnsdistdist/dnsdist.hh index 133186d1b..d3cefa56c 100644 --- a/pdns/dnsdistdist/dnsdist.hh +++ b/pdns/dnsdistdist/dnsdist.hh @@ -208,10 +208,6 @@ using pdns::stat_t; class BasicQPSLimiter { public: - BasicQPSLimiter() - { - } - BasicQPSLimiter(unsigned int burst) : d_tokens(burst) { @@ -270,11 +266,6 @@ protected: class QPSLimiter : public BasicQPSLimiter { public: - QPSLimiter() : - BasicQPSLimiter() - { - } - QPSLimiter(unsigned int rate, unsigned int burst) : BasicQPSLimiter(burst), d_rate(rate), d_burst(burst), d_passthrough(false) { -- 2.47.2