Skip to content

Commit da09166

Browse files
authored
Merge pull request #24 from tomcombriat/fix/ESP8266
Fix autotests for ESP8266
2 parents 5d6d46e + 248a43c commit da09166

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=FixMath
2-
version=1.0.7
2+
version=1.0.8
33
author=Thomas Combriat and Thomas Friedrichsmeier
44
maintainer=Thomas Combriat <tomcombriat@live.fr>
55
sentence=Fixed Point Arithmetics for Arduino and others

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)