From 1dce419ba32d4ac89ebf74977999105bbb450914 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Fri, 30 Oct 2009 18:01:58 -0400 Subject: The destructor for expr_t doesn't need to be virtual --- src/expr.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/expr.h b/src/expr.h index b880fd79..2d700a37 100644 --- a/src/expr.h +++ b/src/expr.h @@ -103,7 +103,7 @@ public: expr_t(const string& _str, const uint_least8_t flags = 0); expr_t(std::istream& in, const uint_least8_t flags = 0); - virtual ~expr_t() throw(); + ~expr_t() throw(); expr_t& operator=(const expr_t& _expr); expr_t& operator=(const string& _expr) { -- cgit v1.2.3