You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cppcheck 2.11 throws this error with the following code (Atmel ASF):
[FILE_LOCATION/ASF/common/utils/parts.h:63] (error) failed to expand 'SAM', Invalid ## usage when expanding 'SAM_PART_IS_DEFINED': Unexpected token ')' [preprocessorErrorDirective]
I think this is an error of simplecpp!
/* ! Check GCC and IAR part definition for 8-bit AVR */
#define AVR8_PART_IS_DEFINED(part) \
(defined(__ ## part ## __) || defined(_AVR ## part ## __))
/* ! Check GCC and IAR part definition for 32-bit AVR */
#define AVR32_PART_IS_DEFINED(part) \
(defined(__AT32 ## part ## __) || defined(_AVR32 ## part ## __))
/* ! Check GCC and IAR part definition for SAM /
#define SAM_PART_IS_DEFINED(part) (defined(__ ## part ## __))
// ^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
/* @} */
The text was updated successfully, but these errors were encountered:
cppcheck 2.11 throws this error with the following code (Atmel ASF):
[FILE_LOCATION/ASF/common/utils/parts.h:63] (error) failed to expand 'SAM', Invalid ## usage when expanding 'SAM_PART_IS_DEFINED': Unexpected token ')' [preprocessorErrorDirective]
I think this is an error of simplecpp!
/* ! Check GCC and IAR part definition for 8-bit AVR */
#define AVR8_PART_IS_DEFINED(part) \
(defined(__ ## part ## __) || defined(_AVR ## part ## __))
/* ! Check GCC and IAR part definition for 32-bit AVR */
#define AVR32_PART_IS_DEFINED(part) \
(defined(__AT32 ## part ## __) || defined(_AVR32 ## part ## __))
/* ! Check GCC and IAR part definition for SAM /
#define SAM_PART_IS_DEFINED(part) (defined(__ ## part ## __))
// ^ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
/* @} */
The text was updated successfully, but these errors were encountered: