From 55b2103294b58b9df321af4fbff1eadaca0943f8 Mon Sep 17 00:00:00 2001 From: Thomas Jarosch Date: Tue, 2 Feb 2010 22:13:51 +0100 Subject: [PATCH] PC-lint: Silence warning about virtual destructor --- asyncio/async_io.hpp | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/asyncio/async_io.hpp b/asyncio/async_io.hpp index 3c2f62a..8291543 100644 --- a/asyncio/async_io.hpp +++ b/asyncio/async_io.hpp @@ -220,7 +220,7 @@ class IOImplementation public: IOImplementation(int read_fd=-1, int write_fd=-1); - virtual ~IOImplementation(); + virtual ~IOImplementation(); //lint !e1509 // boost::signals::trackable is not virtual virtual void close(Direction direction = Direction::both); -- 1.7.1