Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=FixMath
version=1.0.7
version=1.0.8
author=Thomas Combriat and Thomas Friedrichsmeier
maintainer=Thomas Combriat <tomcombriat@live.fr>
sentence=Fixed Point Arithmetics for Arduino and others
Expand Down
2 changes: 1 addition & 1 deletion src/FixMath_Autotests.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
*
*/

#if (defined(__GNUC__) && (__GNUC__ < 12)) || (__cplusplus >= 202002L)
#if (defined(__GNUC__) && (__GNUC__ < 10)) || (__cplusplus >= 202002L)
// Bit-shifting negative number has not been formally defined behavior before C++ 2020, but rather technically "implementation defined". It thus
// could not be used in constexpr statements (although working quite fine, at runtime).
// 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
Expand Down