From c63d9d74810badf15576cd42ef8c75010e8da0cf Mon Sep 17 00:00:00 2001 From: Steffen Schuemann Date: Sat, 27 Apr 2019 07:30:58 +0200 Subject: [PATCH] Updated readme and comments. --- README.md | 2 +- include/ghc/filesystem.hpp | 3 ++- test/filesystem_test.cpp | 4 ++-- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index fa5ed09..4ff291c 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ ![Supported Platforms](https://img.shields.io/badge/platform-macOS%20%7C%20Linux%20%7C%20Windows-blue.svg) [![Build Status](https://travis-ci.org/gulrak/filesystem.svg?branch=master)](https://travis-ci.org/gulrak/filesystem) -[![Build status](https://ci.appveyor.com/api/projects/status/t07wp3k2cddo0hpo?svg=true)](https://ci.appveyor.com/project/gulrak/filesystem) +[![Build status](https://ci.appveyor.com/api/projects/status/t07wp3k2cddo0hpo/branch/master?svg=true)](https://ci.appveyor.com/project/gulrak/filesystem) ![Latest Release Tag](https://img.shields.io/github/tag/gulrak/filesystem.svg) # Filesystem diff --git a/include/ghc/filesystem.hpp b/include/ghc/filesystem.hpp index ac35fae..8ae0ca9 100644 --- a/include/ghc/filesystem.hpp +++ b/include/ghc/filesystem.hpp @@ -142,7 +142,8 @@ #include #endif // GHC_EXPAND_IMPL -//#define LWG_2935_BEHAVIOUR +// configure LWG conformance (see README.md) +// #define LWG_2935_BEHAVIOUR #define LWG_2937_BEHAVIOUR // ghc::filesystem version in decimal (major * 10000 + minor * 100 + patch) diff --git a/test/filesystem_test.cpp b/test/filesystem_test.cpp index 1311073..6e81937 100644 --- a/test/filesystem_test.cpp +++ b/test/filesystem_test.cpp @@ -1364,7 +1364,7 @@ TEST_CASE("30.10.15.6 create_directories", "[filesystem][operations][fs.op.creat CHECK(!fs::is_directory(p)); CHECK(!fs::create_directories(p, ec)); #else - INFO("This test expects conformance predating LWG #2935 result. (What I think is more helpful.)"); + INFO("This test expects conformance predating LWG #2935 result. (As suggested by WG21 P1164R0, implemented by GCC with issue #86910.)"); p = t.path() / "testfile"; generateFile(p); CHECK(fs::is_regular_file(p)); @@ -1408,7 +1408,7 @@ TEST_CASE("30.10.15.7 create_directory", "[filesystem][operations][fs.op.create_ CHECK(!fs::is_directory(p)); CHECK(!fs::create_directories(p, ec)); #else - INFO("This test expects conformance predating LWG #2935 result. (What I think is more helpful.)"); + INFO("This test expects conformance predating LWG #2935 result. (As suggested by WG21 P1164R0, implemented by GCC with issue #86910.)"); p = t.path() / "testfile"; generateFile(p); CHECK(fs::is_regular_file(p));