From 7128fdb6373c901c9c68e2d8ddac911891466c40 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Sun, 1 Feb 2009 22:09:27 -0400 Subject: [PATCH] Added a missing throw() in the formatter. --- src/format.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/format.cc b/src/format.cc index c9ced082..79ec2c0c 100644 --- a/src/format.cc +++ b/src/format.cc @@ -299,6 +299,7 @@ void format_t::format(std::ostream& out_str, scope_t& scope) } catch (const calc_error&) { out << (string("%") + elem->chars); + throw; } break;