]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Make GCC on CentOS 5.3 happier by explicitly #including <sstream>
authorAlex Rousskov <rousskov@measurement-factory.com>
Tue, 28 May 2013 23:28:39 +0000 (17:28 -0600)
committerAlex Rousskov <rousskov@measurement-factory.com>
Tue, 28 May 2013 23:28:39 +0000 (17:28 -0600)
(used by aclParseAclList() template) in acl/Gadgets.h.

src/acl/Gadgets.h
src/cache_cf.cc

index 19a131ced25ca806341da22d11c67c7808fd7543..a5a36f000050daee5e592061d1265bfc383ae616 100644 (file)
@@ -4,6 +4,10 @@
 #include "err_type.h"
 #include "acl/forward.h"
 
+#if HAVE_SSTREAM
+#include <sstream>
+#endif
+
 class ConfigParser;
 class dlink_list;
 class StoreEntry;
index 2ae75abcb5d3759ee4fe74bbdb8da5b3cc9d9274..fabebf1bb6f352d70e717b37b8cda599d7c1ba7a 100644 (file)
 #if HAVE_GRP_H
 #include <grp.h>
 #endif
-#if HAVE_SSTREAM
-#include <sstream>
-#endif
 #if HAVE_SYS_STAT_H
 #include <sys/stat.h>
 #endif