Skip to content

Commit

Permalink
Fixed preprocessor compiler detection macro
Browse files Browse the repository at this point in the history
  • Loading branch information
fuersten committed Aug 23, 2024
1 parent b79518c commit 3dc5296
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/rexsapi/Types.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
#endif

#if defined(__GNUC__) && __cplusplus >= 202002L
#if __GNUC__ > 14 || (__GNUC_ == 14 && __GNUC_MINOR__ > 1)
#if __GNUC__ > 14 || (__GNUC_ == 14 && __GNUC_MINOR__ >= 1)
#define REXS_HAS_CHRONO_DATE
#endif
#endif
Expand Down

0 comments on commit 3dc5296

Please sign in to comment.