diff options
author | John Wiegley <johnw@newartisans.com> | 2010-12-22 15:31:35 -0500 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2010-12-22 15:31:35 -0500 |
commit | d2ac9f7eaf5caacdef516a45314334dc5fc49fe2 (patch) | |
tree | 9b804012383a7834552cd328267724d62e00a85b /src/exprbase.h | |
parent | edc5371bd35b4ab0c517634a5b30c0c78db30586 (diff) | |
download | fork-ledger-d2ac9f7eaf5caacdef516a45314334dc5fc49fe2.tar.gz fork-ledger-d2ac9f7eaf5caacdef516a45314334dc5fc49fe2.tar.bz2 fork-ledger-d2ac9f7eaf5caacdef516a45314334dc5fc49fe2.zip |
Create format_t::mark_uncompiled
Diffstat (limited to 'src/exprbase.h')
-rw-r--r-- | src/exprbase.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/exprbase.h b/src/exprbase.h index 7eee0398..83ef34ff 100644 --- a/src/exprbase.h +++ b/src/exprbase.h @@ -131,11 +131,11 @@ public: set_text(original_string ? *original_string : "<stream>"); } - void mark_uncompiled() { + virtual void mark_uncompiled() { compiled = false; } - void recompile(scope_t& scope) { + void recompile(scope_t& scope) { compiled = false; compile(scope); } |