From ea26421a8e02c17a6b59ba4565a115cbefb91370 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Fri, 12 Apr 2019 16:28:12 +0200 Subject: Fix MSVC /permissive- workaround --- libbutl/filesystem.mxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libbutl/filesystem.mxx b/libbutl/filesystem.mxx index f3d2c87..9b0aacb 100644 --- a/libbutl/filesystem.mxx +++ b/libbutl/filesystem.mxx @@ -691,7 +691,7 @@ LIBBUTL_MODEXPORT namespace butl // MSVC in the strict mode (/permissive-), which we enable by default from // 15.5, needs this declaration to straighten its brains out. // -#if defined(_MSC_VER) && _MSC_VER >= 1920 +#if defined(_MSC_VER) && _MSC_VER >= 1912 inline dir_iterator begin (dir_iterator&&); #endif -- cgit v1.1