aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2019-04-12 16:28:12 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2019-04-12 16:28:12 +0200
commitea26421a8e02c17a6b59ba4565a115cbefb91370 (patch)
treed091d769d36fef9574d04cdba84b330637d7169c
parentd57f8bd933ae6a2ddb2d40994d76edca13fe0314 (diff)
Fix MSVC /permissive- workaround
-rw-r--r--libbutl/filesystem.mxx2
1 files changed, 1 insertions, 1 deletions
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