diff options
author | John Wiegley <johnw@newartisans.com> | 2009-10-30 18:01:58 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-10-30 18:01:58 -0400 |
commit | 1dce419ba32d4ac89ebf74977999105bbb450914 (patch) | |
tree | 2912f7fe6da8cc41b50b0daaee4c245159472e19 /src/expr.h | |
parent | fefedefd56036cef5267b6686a1296d1d4e2b752 (diff) | |
download | fork-ledger-1dce419ba32d4ac89ebf74977999105bbb450914.tar.gz fork-ledger-1dce419ba32d4ac89ebf74977999105bbb450914.tar.bz2 fork-ledger-1dce419ba32d4ac89ebf74977999105bbb450914.zip |
The destructor for expr_t doesn't need to be virtual
Diffstat (limited to 'src/expr.h')
-rw-r--r-- | src/expr.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) { |