Skip to content

Commit

Permalink
Merge pull request #117 from phprus/gcc-libstdcxx-version
Browse files Browse the repository at this point in the history
libstdc++ version check.
  • Loading branch information
gulrak authored Apr 26, 2021
2 parents 777e3c9 + b9faee7 commit 134dffd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/filesystem_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 134dffd

Please sign in to comment.