Skip to content

Commit

Permalink
Fix macro check build failure
Browse files Browse the repository at this point in the history
  • Loading branch information
wxmerkt committed Jun 30, 2024
1 parent 6d9f48d commit ed1ffe9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/hpp/fcl/fwd.hh
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@
#define HPP_FCL_COMPILER_DIAGNOSTIC_POP _Pragma("GCC diagnostic pop")
#define HPP_FCL_COMPILER_DIAGNOSTIC_IGNORED_DEPRECECATED_DECLARATIONS \
_Pragma("GCC diagnostic ignored \"-Wdeprecated-declarations\"")
#if !defined(__has_warning) || __has_warning("-Wmaybe-uninitialized")
#if defined(__has_warning) && __has_warning("-Wmaybe-uninitialized")
#define HPP_FCL_COMPILER_DIAGNOSTIC_IGNORED_MAYBE_UNINITIALIZED \
_Pragma("GCC diagnostic ignored \"-Wmaybe-uninitialized\"")
#else
Expand Down

0 comments on commit ed1ffe9

Please sign in to comment.