--------------------- PatchSet 5997 Date: 2007/10/23 19:47:28 Author: chtsanti Branch: async-calls Tag: (none) Log: Converting the toCbdata() pure virtual method to normal method. This method normally must not used but if needed must implemented by dericed classes Members: src/ICAP/AsyncJob.h:1.3.14.2->1.3.14.3 Index: squid3/src/ICAP/AsyncJob.h =================================================================== RCS file: /cvsroot/squid-sf//squid3/src/ICAP/AsyncJob.h,v retrieving revision 1.3.14.2 retrieving revision 1.3.14.3 diff -u -r1.3.14.2 -r1.3.14.3 --- squid3/src/ICAP/AsyncJob.h 22 Oct 2007 19:24:27 -0000 1.3.14.2 +++ squid3/src/ICAP/AsyncJob.h 23 Oct 2007 19:47:28 -0000 1.3.14.3 @@ -1,6 +1,6 @@ /* - * $Id: AsyncJob.h,v 1.3.14.2 2007/10/22 19:24:27 chtsanti Exp $ + * $Id: AsyncJob.h,v 1.3.14.3 2007/10/23 19:47:28 chtsanti Exp $ * * * SQUID Web Proxy Cache http://www.squid-cache.org/ @@ -90,7 +90,7 @@ AsyncJob(const char *aTypeName); virtual ~AsyncJob(); - virtual void *toCbdata() = 0; + virtual void *toCbdata() {assert(false); return this;} void noteStart(); // calls virtual start static void noteStartWrapper(void *data);