From: Alex Rousskov Date: Mon, 29 Sep 2008 08:25:20 +0000 (-0600) Subject: Made "make check" happy. X-Git-Tag: SQUID_3_1_0_1~45^2~11^2~7 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8bfcfe3a3d51ed1d41d94f64c5f2ddefa6ae69ad;p=thirdparty%2Fsquid.git Made "make check" happy. --- diff --git a/src/adaptation/Message.h b/src/adaptation/Message.h index 950e9e2c94..8e40b72983 100644 --- a/src/adaptation/Message.h +++ b/src/adaptation/Message.h @@ -6,10 +6,10 @@ #ifndef SQUID__ADAPTATION__MESSAGE_H #define SQUID__ADAPTATION__MESSAGE_H +#include "RefCount.h" + class HttpMsg; class BodyPipe; -template -class RefCount; typedef RefCount BodyPipePointer; namespace Adaptation { diff --git a/src/tests/stub_HttpReply.cc b/src/tests/stub_HttpReply.cc index 51b8a2db2a..1e18328428 100644 --- a/src/tests/stub_HttpReply.cc +++ b/src/tests/stub_HttpReply.cc @@ -108,3 +108,10 @@ HttpReply::hdrCacheInit() { fatal ("Not implemented"); } + +HttpReply * +HttpReply::clone() const +{ + fatal("Not implemented"); + return NULL; +} diff --git a/src/tests/stub_HttpRequest.cc b/src/tests/stub_HttpRequest.cc index 15e2eac815..a3f65ce7a8 100644 --- a/src/tests/stub_HttpRequest.cc +++ b/src/tests/stub_HttpRequest.cc @@ -94,6 +94,13 @@ HttpRequest::parseFirstLine(const char *start, const char *end) return false; } +HttpRequest * +HttpRequest::clone() const +{ + fatal("Not implemented"); + return NULL; +} + /* * DO NOT MODIFY: * arch-tag: dd894aa8-63cc-4543-92d9-1079a18bee11