summaryrefslogtreecommitdiff
path: root/src/expr/node.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/expr/node.cpp')
-rw-r--r--src/expr/node.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/expr/node.cpp b/src/expr/node.cpp
index 695e572ab..e303a9e58 100644
--- a/src/expr/node.cpp
+++ b/src/expr/node.cpp
@@ -36,7 +36,7 @@ TypeCheckingExceptionPrivate::~TypeCheckingExceptionPrivate() throw () {
}
void TypeCheckingExceptionPrivate::toStream(std::ostream& os) const throw() {
- os << "Error type-checking " << d_node << ": " << d_msg << std::endl << *d_node;
+ os << "Error during type checking: " << d_msg << std::endl << *d_node << endl << "The ill-typed expression: " << *d_node;
}
NodeTemplate<true> TypeCheckingExceptionPrivate::getNode() const throw() {
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback