Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
flagarde committed May 14, 2024
1 parent fcc749c commit 26b5d50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/Khaos/details/languages/CXX.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
#define KHAOS_CXX_STANDARD_PRIVATE() (__cplusplus) /* //NOSONAR !< defined as __cplusplus */
#endif

#if defined(__STRICT_ANSI__)
#if defined(__STRICT_ANSI__) || (defined(_MSC_VER) && !defined(_MSC_EXTENSIONS)) || defined(__ANSI__) || defined(NO_EXT_KEYS)
#define KHAOS_LANGUAGE_ISO_PRIVATE() (1L) /* //NOSONAR !< 1 if strict ISO, 0 otherwise */
#define KHAOS_LANGUAGE_Extensions_PRIVATE() (0L) /* //NOSONAR !< 0 if strict ISO, 1 otherwise */
#else
Expand Down

0 comments on commit 26b5d50

Please sign in to comment.