mirror of
https://git.mirrors.martin98.com/https://github.com/gulrak/filesystem
synced 2025-06-04 11:13:58 +08:00
Merge pull request #117 from phprus/gcc-libstdcxx-version
libstdc++ version check.
This commit is contained in:
commit
134dffdcbd
@ -406,7 +406,7 @@ TEST_CASE("fs.path.construct - path constructors and destructor", "[filesystem][
|
||||
CHECK("//host/foo/bar" == fs::path("//host/foo/bar"));
|
||||
}
|
||||
|
||||
#if !defined(GHC_OS_WINDOWS) && !(defined(GCC_VERSION) && GCC_VERSION < 80100) && !defined(USE_STD_FS)
|
||||
#if !defined(GHC_OS_WINDOWS) && !(defined(__GLIBCXX__) && !(defined(_GLIBCXX_RELEASE) && (_GLIBCXX_RELEASE >= 8))) && !defined(USE_STD_FS)
|
||||
std::locale loc;
|
||||
bool testUTF8Locale = false;
|
||||
try {
|
||||
|
Loading…
x
Reference in New Issue
Block a user