Skip to content

Commit

Permalink
Fixes compiler detection with Wundef (#934)
Browse files Browse the repository at this point in the history
* Fix doc comment for pool::allocate() (#914)

* Fixes compiler detection with Wunder

---------

Co-authored-by: Michael K <[email protected]>
Co-authored-by: Rafael Laya <[email protected]>
  • Loading branch information
3 people authored Jul 28, 2024
1 parent 5d97f07 commit 02981a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/etl/profiles/determine_compiler.h
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ SOFTWARE.
#if defined(__clang__) || defined(__llvm__)
#define ETL_COMPILER_CLANG
#define ETL_COMPILER_TYPE_DETECTED
#if __AVR__ == 1
#if defined(__AVR__) && (__AVR__ == 1)
#define ETL_CROSS_COMPILING_TO_AVR
#endif
#endif
Expand Down

0 comments on commit 02981a5

Please sign in to comment.