Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
flagarde committed May 10, 2024
1 parent c687732 commit d7be141
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions include/Khaos/C.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@

#if defined(__STDC__)
#if defined(__STDC_VERSION__)
#define KHAOS_C_STANDARD_PRIVATE() (__STDC_VERSION__) /*!< defined as __STDC_VERSION__ */
#define KHAOS_C_STANDARD_PRIVATE() (__STDC_VERSION__) /*!< defined as __STDC_VERSION__ */
#else
#define KHAOS_C_STANDARD_PRIVATE() KHAOS_STANDARD_C90_PRIVATE() /*!< defined as C90 */
#define KHAOS_C_STANDARD_PRIVATE() KHAOS_STANDARD_C90_PRIVATE() /*!< defined as C90 */
#endif
#else
/*
Expand Down
4 changes: 2 additions & 2 deletions include/Khaos/CXX.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@
*
*/
#if defined(_MSVC_LANG)
#define KHAOS_CXX_STANDARD_PRIVATE() (_MSVC_LANG) /*!< defined as _MSVC_LANG */
#define KHAOS_CXX_STANDARD_PRIVATE() (_MSVC_LANG) /*!< defined as _MSVC_LANG */
#else
#define KHAOS_CXX_STANDARD_PRIVATE() (__cplusplus) /*!< defined as __cplusplus */
#define KHAOS_CXX_STANDARD_PRIVATE() (__cplusplus) /*!< defined as __cplusplus */
#endif
#else
#define KHAOS_CXX_STANDARD_PRIVATE() (__cplusplus) /*!< defined as __cplusplus */
Expand Down

0 comments on commit d7be141

Please sign in to comment.