Skip to content

Commit 741ad4e

Browse files
committed
Workaround for more french locale issues with old toolchains
1 parent 15f7232 commit 741ad4e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test_decimal32_fast_stream.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ int main()
180180
#ifndef _MSC_VER
181181
test_issue_1127_locales("en_US.UTF-8"); // . decimal, , thousands
182182
test_issue_1127_locales("de_DE.UTF-8"); // , decimal, . thousands
183-
#if !defined(__clang__) || __clang_major__ > 8
183+
#if (defined(__clang__) && __clang_major__ > 9) || (defined(__GNUC__) && __GNUC__ > 9)
184184
test_issue_1127_locales("fr_FR.UTF-8"); // , decimal, . thousands
185185
#endif
186186
#endif

0 commit comments

Comments
 (0)