diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2019-08-12 13:54:14 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2019-08-12 13:54:14 +0200 |
commit | a3f9a2d26302f499a4ef490d8bf5af234ddb3250 (patch) | |
tree | db8e630b1b4c64ea5ed6cd119e5c5fb160d24392 | |
parent | 0f51301fdb1b34c9485d34140b90ed42fc96f9c3 (diff) |
Adjust to fdstream constructor changes
-rw-r--r-- | bbot/utility.txx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bbot/utility.txx b/bbot/utility.txx index d743a6a..98ae729 100644 --- a/bbot/utility.txx +++ b/bbot/utility.txx @@ -197,7 +197,7 @@ namespace bbot try { - ofdstream ofs (f, ios::binary); + ofdstream ofs (f, fdopen_mode::binary); auto_rmfile arm (f); // Try to remove on failure ignoring errors. serialize_manifest (m, ofs, f.string (), what, true); |