aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2019-08-12 13:54:14 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2019-08-12 13:54:14 +0200
commita3f9a2d26302f499a4ef490d8bf5af234ddb3250 (patch)
treedb8e630b1b4c64ea5ed6cd119e5c5fb160d24392
parent0f51301fdb1b34c9485d34140b90ed42fc96f9c3 (diff)
Adjust to fdstream constructor changes
-rw-r--r--bbot/utility.txx2
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);