summaryrefslogtreecommitdiff
path: root/src/expr.h
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2009-02-02 00:24:26 -0400
committerJohn Wiegley <johnw@newartisans.com>2009-02-02 00:24:26 -0400
commit9540406af15d522d15c94cc3d63c77b7da7e1423 (patch)
tree6dd912aac2adb018c16a8b506bc0e18eb8444caa /src/expr.h
parentef3943c60498ab0fd4de1f1735109b0d103c167a (diff)
downloadfork-ledger-9540406af15d522d15c94cc3d63c77b7da7e1423.tar.gz
fork-ledger-9540406af15d522d15c94cc3d63c77b7da7e1423.tar.bz2
fork-ledger-9540406af15d522d15c94cc3d63c77b7da7e1423.zip
Simplified error context handling.
Diffstat (limited to 'src/expr.h')
-rw-r--r--src/expr.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/expr.h b/src/expr.h
index 3cb60495..28937b64 100644
--- a/src/expr.h
+++ b/src/expr.h
@@ -153,6 +153,11 @@ public:
std::ostream& operator<<(std::ostream& out, const expr_t& expr);
+inline string expr_context(const expr_t& expr) {
+ // jww (2009-02-01): NYI
+ return "EXPR";
+}
+
} // namespace ledger
#endif // _EXPR_H