From 2b590d8d667ec29290291ceb6db81c82bb94a690 Mon Sep 17 00:00:00 2001 From: lloyd Date: Wed, 23 Aug 2006 08:44:27 +0000 Subject: Make Filter::send non-virtual; this was apparently something vestigal from way back around 0.7.7, and has served no useful purpose since. --- include/filter.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/filter.h b/include/filter.h index b8b051aa9..730968e0a 100644 --- a/include/filter.h +++ b/include/filter.h @@ -25,7 +25,7 @@ class Filter void finish_msg(); virtual ~Filter() {} protected: - virtual void send(const byte[], u32bit); + void send(const byte[], u32bit); void send(byte input) { send(&input, 1); } void send(const MemoryRegion& in) { send(in.begin(), in.size()); } Filter(); -- cgit v1.2.3