From 1690169dcefcc6fe6249221c4c08cb371cc700fc Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Tue, 2 May 2017 13:05:41 +0200 Subject: Make dir_iterator move-ctor noexcept, revert previous workaround --- libbutl/filesystem.ixx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libbutl/filesystem.ixx') diff --git a/libbutl/filesystem.ixx b/libbutl/filesystem.ixx index 43fef20..eb9984b 100644 --- a/libbutl/filesystem.ixx +++ b/libbutl/filesystem.ixx @@ -108,7 +108,7 @@ namespace butl // dir_iterator // inline dir_iterator:: - dir_iterator (dir_iterator&& x) + dir_iterator (dir_iterator&& x) noexcept : e_ (std::move (x.e_)), h_ (x.h_) { #ifndef _WIN32 -- cgit v1.1