From 2e8b9264bfde0838f5c9b32153656b80c9f855ff Mon Sep 17 00:00:00 2001 From: qPCR4vir Date: Fri, 19 Feb 2016 14:16:34 +0100 Subject: [PATCH] fix compiler error noexeption --- source/filesystem/filesystem.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/filesystem/filesystem.cpp b/source/filesystem/filesystem.cpp index fc68a885..63795147 100644 --- a/source/filesystem/filesystem.cpp +++ b/source/filesystem/filesystem.cpp @@ -59,12 +59,12 @@ namespace nana { namespace experimental { namespace filesystem path2_(path2) {} - const path& filesystem_error::path1() const + const path& filesystem_error::path1() const noexcept { return path1_; } - const path&filesystem_error::path2() const + const path& filesystem_error::path2() const noexcept { return path2_; }