commit 8e3b9a3452172033918b80bc69d940538690bfcb
Author: Jonathan Wakely <jwakely@redhat.com>
Date: Sat May 2 12:26:53 2015 +0100
* include/experimental/fs_path.h (filesystem_error::~filesystem_error):
Declare.
* src/filesystem/path.cc (filesystem_error::~filesystem_error):
Define.
@@ -531,6 +531,8 @@ _GLIBCXX_BEGIN_NAMESPACE_CXX11
: system_error(__ec, __what_arg), _M_path1(__p1), _M_path2(__p2)
{ }
+ ~filesystem_error();
+
const path& path1() const noexcept { return _M_path1; }
const path& path2() const noexcept { return _M_path2; }
const char* what() const noexcept { return _M_what.c_str(); }
@@ -26,6 +26,8 @@
using std::experimental::filesystem::path;
+std::experimental::filesystem::filesystem_error::~filesystem_error() = default;
+
constexpr path::value_type path::preferred_separator;
path&