From: rousskov <> Date: Tue, 26 Feb 2008 07:16:47 +0000 (+0000) Subject: Bug #2240 fix: HttpRequestMethod-related unit tests fail X-Git-Tag: BASIC_TPROXY4~59 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=af256e2e4be6999a67180ba30acaacde1a36c51a;p=thirdparty%2Fsquid.git Bug #2240 fix: HttpRequestMethod-related unit tests fail Made HttpRequestMethod.h self-sufficient: #include enough to compile it in isolation. TODO: move operator++() to .cc so that we do not have to drag Debug.h and friends into the header (via squid.h). --- diff --git a/src/HttpRequestMethod.h b/src/HttpRequestMethod.h index 3ebf2e8846..3b11576d33 100644 --- a/src/HttpRequestMethod.h +++ b/src/HttpRequestMethod.h @@ -1,5 +1,5 @@ /* - * $Id: HttpRequestMethod.h,v 1.11 2008/02/16 17:41:55 rousskov Exp $ + * $Id: HttpRequestMethod.h,v 1.12 2008/02/26 00:16:47 rousskov Exp $ * * * SQUID Web Proxy Cache http://www.squid-cache.org/ @@ -33,6 +33,7 @@ #ifndef SQUID_HTTPREQUESTMETHOD_H #define SQUID_HTTPREQUESTMETHOD_H +#include "squid.h" #include #include "SquidString.h"