From aaeecbdde52c87b4f05b5f36b61a00964eda4e76 Mon Sep 17 00:00:00 2001 From: Jacob Lifshay Date: Wed, 26 Jul 2017 03:56:02 -0700 Subject: [PATCH] fix compile error on clang 4.0 --- src/util/filesystem.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/util/filesystem.h b/src/util/filesystem.h index a4156b5..db7a7dc 100644 --- a/src/util/filesystem.h +++ b/src/util/filesystem.h @@ -2840,7 +2840,9 @@ private: } public: - directory_entry() noexcept = default; + directory_entry() noexcept + { + } explicit directory_entry(const filesystem::path &path_value) : path_value(path_value) { refresh(); -- 2.30.2