diff options
author | John Wiegley <johnw@newartisans.com> | 2009-11-21 05:38:38 -0500 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-11-21 05:38:38 -0500 |
commit | ca1d4c53117b8738a8f7a95ca417d7797bfe83f5 (patch) | |
tree | e9450f46a6e230bf532ab0ec9ace74a8e7e81d92 /src/exprbase.h | |
parent | dcc69f3f78aad35eb9f4186c31e68e0ec28f3fa5 (diff) | |
download | fork-ledger-ca1d4c53117b8738a8f7a95ca417d7797bfe83f5.tar.gz fork-ledger-ca1d4c53117b8738a8f7a95ca417d7797bfe83f5.tar.bz2 fork-ledger-ca1d4c53117b8738a8f7a95ca417d7797bfe83f5.zip |
Added a missing virtual keyword
Diffstat (limited to 'src/exprbase.h')
-rw-r--r-- | src/exprbase.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/exprbase.h b/src/exprbase.h index d2bf5a6d..95cc51fc 100644 --- a/src/exprbase.h +++ b/src/exprbase.h @@ -92,8 +92,7 @@ public: { TRACE_CTOR(expr_base_t, "scope_t *"); } - - ~expr_base_t() throw() { + virtual ~expr_base_t() throw() { TRACE_DTOR(expr_base_t); } |