]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Fixed build after a56fcf0 (Reuse helpers after timeout) (#375) M-staged-PR375
authorAlex Rousskov <rousskov@measurement-factory.com>
Sun, 24 Feb 2019 09:54:44 +0000 (09:54 +0000)
committerSquid Anubis <squid-anubis@squid-cache.org>
Sun, 24 Feb 2019 09:54:48 +0000 (09:54 +0000)
In all tested environments, something else #included `<map>`,
apparently, but that old explicit #include should not have been removed.

Also fixed STL #include order.

src/helper.h

index 3512b35cd801f66e97933f36a462e0db889d70f2..9147e1018c31560ccda12ef607f41db177c9257e 100644 (file)
@@ -25,8 +25,9 @@
 #include "sbuf/SBuf.h"
 
 #include <list>
-#include <unordered_map>
+#include <map>
 #include <queue>
+#include <unordered_map>
 
 class Packable;
 class wordlist;