From: Jacob Lifshay Date: Wed, 26 Jul 2017 10:56:02 +0000 (-0700) Subject: fix compile error on clang 4.0 X-Git-Tag: gsoc-2017~62 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=aaeecbdde52c87b4f05b5f36b61a00964eda4e76;p=kazan.git fix compile error on clang 4.0 --- 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();