Fixed a compile error found by g++-4.3.2
This commit is contained in:
parent
aff9052baf
commit
d102641f2a
1 changed files with 4 additions and 4 deletions
|
|
@ -364,14 +364,14 @@ post_t * generate_posts_iterator::operator()()
|
|||
}
|
||||
}
|
||||
catch (std::exception& err) {
|
||||
add_error_context(_("While parsing generated transaction (seed %1):"
|
||||
<< seed));
|
||||
add_error_context(_("While parsing generated transaction (seed %1):")
|
||||
<< seed);
|
||||
add_error_context(buf.str());
|
||||
throw;
|
||||
}
|
||||
catch (int status) {
|
||||
add_error_context(_("While parsing generated transaction (seed %1):"
|
||||
<< seed));
|
||||
add_error_context(_("While parsing generated transaction (seed %1):")
|
||||
<< seed);
|
||||
add_error_context(buf.str());
|
||||
throw;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue