diff options
author | lloyd <[email protected]> | 2006-08-23 08:44:27 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2006-08-23 08:44:27 +0000 |
commit | 2b590d8d667ec29290291ceb6db81c82bb94a690 (patch) | |
tree | 7cfbfedf99257e24953a2f2327b659e2fcb1818c | |
parent | 77ceb5a3f5e6b2774d37d7a0464a7607814e1f7c (diff) |
Make Filter::send non-virtual; this was apparently something vestigal from
way back around 0.7.7, and has served no useful purpose since.
-rw-r--r-- | include/filter.h | 2 |
1 files changed, 1 insertions, 1 deletions
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<byte>& in) { send(in.begin(), in.size()); } Filter(); |