From: Alex Rousskov Date: Sun, 24 Feb 2019 09:54:44 +0000 (+0000) Subject: Fixed build after a56fcf0 (Reuse helpers after timeout) (#375) X-Git-Tag: M-staged-PR375 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a8067a2e1495b33b510a9ed187b39a5a4f169930;p=thirdparty%2Fsquid.git Fixed build after a56fcf0 (Reuse helpers after timeout) (#375) In all tested environments, something else #included ``, apparently, but that old explicit #include should not have been removed. Also fixed STL #include order. --- diff --git a/src/helper.h b/src/helper.h index 3512b35cd8..9147e1018c 100644 --- a/src/helper.h +++ b/src/helper.h @@ -25,8 +25,9 @@ #include "sbuf/SBuf.h" #include -#include +#include #include +#include class Packable; class wordlist;