aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2019-08-12 17:26:59 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2019-08-12 17:26:59 +0200
commitdf78872e293ce2ca1e40752060a1aaed09c421d4 (patch)
tree3f60fbfb287fff5fb76701c99aa4d2313a524b9d
parent886b47188a589968f5c566ec20d560554105a704 (diff)
Fix fdstream usage some more
-rw-r--r--bdep/utility.txx2
1 files changed, 1 insertions, 1 deletions
diff --git a/bdep/utility.txx b/bdep/utility.txx
index 5e7cb66..cf03911 100644
--- a/bdep/utility.txx
+++ b/bdep/utility.txx
@@ -316,7 +316,7 @@ namespace bdep
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, move (ff));