Commit 5485c818 by Jonathan Wakely Committed by Jonathan Wakely

* src/filesystem/ops.cc (is_empty): Fix typo in exception message.

From-SVN: r242341
parent 13908b44
2016-11-12 Jonathan Wakely <jwakely@redhat.com> 2016-11-12 Jonathan Wakely <jwakely@redhat.com>
* src/filesystem/ops.cc (is_empty): Fix typo in exception message.
* include/std/future (future_error): Fix public typo to private. * include/std/future (future_error): Fix public typo to private.
2016-11-11 Jonathan Wakely <jwakely@redhat.com> 2016-11-11 Jonathan Wakely <jwakely@redhat.com>
......
...@@ -1054,7 +1054,7 @@ fs::is_empty(const path& p) ...@@ -1054,7 +1054,7 @@ fs::is_empty(const path& p)
error_code ec; error_code ec;
bool e = is_empty(p, ec); bool e = is_empty(p, ec);
if (ec) if (ec)
_GLIBCXX_THROW_OR_ABORT(filesystem_error("cannot check is file is empty", _GLIBCXX_THROW_OR_ABORT(filesystem_error("cannot check if file is empty",
p, ec)); p, ec));
return e; return e;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment