Commit 13908b44 by Jonathan Wakely Committed by Jonathan Wakely

* include/std/future (future_error): Fix public typo to private.

From-SVN: r242340
parent 90df67c7
2016-11-12 Jonathan Wakely <jwakely@redhat.com>
* include/std/future (future_error): Fix public typo to private.
2016-11-11 Jonathan Wakely <jwakely@redhat.com>
* include/std/future (future_error): Make existing constructor
......
......@@ -109,7 +109,7 @@ _GLIBCXX_BEGIN_NAMESPACE_VERSION
const error_code&
code() const noexcept { return _M_code; }
public:
private:
explicit
future_error(error_code __ec)
: logic_error("std::future_error: " + __ec.message()), _M_code(__ec)
......
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