From: Amos Jeffries Date: Tue, 17 Nov 2015 06:58:37 +0000 (-0800) Subject: Remove unnecessary and dangerous terminateAll() X-Git-Tag: SQUID_4_0_3~5^2~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8ced7106f971d6785478f211cbe12747b306ecf4;p=thirdparty%2Fsquid.git Remove unnecessary and dangerous terminateAll() --- diff --git a/src/Pipeline.h b/src/Pipeline.h index de0e463345..127c2996df 100644 --- a/src/Pipeline.h +++ b/src/Pipeline.h @@ -40,7 +40,7 @@ class Pipeline public: Pipeline() : nrequests(0) {} - ~Pipeline() {terminateAll(0);} + ~Pipeline() = default; /// register a new request context to the pipeline void add(const ClientSocketContextPointer &);