Skip to content

Commit 83e8698

Browse files
committed
Fix autotests for ESP8266
1 parent 5d6d46e commit 83e8698

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/FixMath_Autotests.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
*/
1010

11-
#if (defined(__GNUC__) && (__GNUC__ < 12)) || (__cplusplus >= 202002L)
11+
#if (defined(__GNUC__) && (__GNUC__ < 10)) || (__cplusplus >= 202002L)
1212
// Bit-shifting negative number has not been formally defined behavior before C++ 2020, but rather technically "implementation defined". It thus
1313
// could not be used in constexpr statements (although working quite fine, at runtime).
1414
// At the time of this writing (07/2024), we do not have a c++ 2020 compiler running in our automated test workflow. However, older versions of GCC

0 commit comments

Comments
 (0)