From 5b244a78dc61f1461882f1a751b047ea81a8c2d5 Mon Sep 17 00:00:00 2001 From: Jonathan Wakely Date: Sat, 2 May 2015 12:36:55 +0100 Subject: [PATCH] fs_path.h (filesystem_error::~filesystem_error): Declare. * include/experimental/fs_path.h (filesystem_error::~filesystem_error): Declare. * src/filesystem/path.cc (filesystem_error::~filesystem_error): Define. From-SVN: r222720 --- libstdc++-v3/ChangeLog | 5 +++++ libstdc++-v3/include/experimental/fs_path.h | 2 ++ libstdc++-v3/src/filesystem/path.cc | 2 ++ 3 files changed, 9 insertions(+) diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 9ba7c30d7ec..d9e58d0cf19 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,5 +1,10 @@ 2015-05-02 Jonathan Wakely + * include/experimental/fs_path.h (filesystem_error::~filesystem_error): + Declare. + * src/filesystem/path.cc (filesystem_error::~filesystem_error): + Define. + PR libstdc++/65978 * include/std/tuple (forward_as_tuple, tie): Add constexpr. * testsuite/20_util/tuple/creation_functions/constexpr.cc: Uncomment diff --git a/libstdc++-v3/include/experimental/fs_path.h b/libstdc++-v3/include/experimental/fs_path.h index 33a16dbee56..d103312c172 100644 --- a/libstdc++-v3/include/experimental/fs_path.h +++ b/libstdc++-v3/include/experimental/fs_path.h @@ -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(); } diff --git a/libstdc++-v3/src/filesystem/path.cc b/libstdc++-v3/src/filesystem/path.cc index 7924732e646..a5441b95c9b 100644 --- a/libstdc++-v3/src/filesystem/path.cc +++ b/libstdc++-v3/src/filesystem/path.cc @@ -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& -- 2.30.2