Skip to content

Commit 6c2f71a

Browse files
committed
make veryfi static in ccrx consistent with the rest
1 parent 27fc8a2 commit 6c2f71a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/common/tusb_compiler.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
#elif defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
5757
#define TU_VERIFY_STATIC _Static_assert
5858
#elif defined(__CCRX__)
59-
#define TU_VERIFY_STATIC(const_expr, _mess) typedef char TU_XSTRCAT3(Line, __LINE__, _TU_COUNTER_)[(const_expr) ? 1 : 0];
59+
#define TU_VERIFY_STATIC(const_expr, _mess) typedef char TU_XSTRCAT(_verify_static_, _TU_COUNTER_)[(const_expr) ? 1 : 0];
6060
#else
6161
#define TU_VERIFY_STATIC(const_expr, _mess) enum { TU_XSTRCAT(_verify_static_, _TU_COUNTER_) = 1/(!!(const_expr)) }
6262
#endif

0 commit comments

Comments
 (0)