Fixed a compile error found by g++-4.3.2

This commit is contained in:
John Wiegley 2009-02-27 16:19:17 -04:00
parent aff9052baf
commit d102641f2a

View file

@ -364,14 +364,14 @@ post_t * generate_posts_iterator::operator()()
} }
} }
catch (std::exception& err) { catch (std::exception& err) {
add_error_context(_("While parsing generated transaction (seed %1):" add_error_context(_("While parsing generated transaction (seed %1):")
<< seed)); << seed);
add_error_context(buf.str()); add_error_context(buf.str());
throw; throw;
} }
catch (int status) { catch (int status) {
add_error_context(_("While parsing generated transaction (seed %1):" add_error_context(_("While parsing generated transaction (seed %1):")
<< seed)); << seed);
add_error_context(buf.str()); add_error_context(buf.str());
throw; throw;
} }