summaryrefslogtreecommitdiff
path: root/src/exprbase.h
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2010-12-22 15:31:35 -0500
committerJohn Wiegley <johnw@newartisans.com>2010-12-22 15:31:35 -0500
commitd2ac9f7eaf5caacdef516a45314334dc5fc49fe2 (patch)
tree9b804012383a7834552cd328267724d62e00a85b /src/exprbase.h
parentedc5371bd35b4ab0c517634a5b30c0c78db30586 (diff)
downloadfork-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.h4
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);
}