Added a missing throw() in the formatter.

This commit is contained in:
John Wiegley 2009-02-01 22:09:27 -04:00
parent 38c1b0feb0
commit 7128fdb637

View file

@ -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;