Skip to content

Commit

Permalink
// clang-format off & on at 2 places added
Browse files Browse the repository at this point in the history
  • Loading branch information
rokath committed Aug 30, 2024
1 parent 912f518 commit 9625d07
Showing 1 changed file with 14 additions and 12 deletions.
26 changes: 14 additions & 12 deletions src/trice.h
Original file line number Diff line number Diff line change
Expand Up @@ -801,9 +801,11 @@ void TRiceS(int tid, char* fmt, char* runtimeGeneratedString);
TRICE_LEAVE

#if defined(TRICE_CLEAN) && TRICE_CLEAN == 1

TRICE_INLINE void TRice0(const char* pFmt){TRICE_UNUSED(pFmt)} TRICE_INLINE void Trice0(const char* pFmt){TRICE_UNUSED(pFmt)} TRICE_INLINE void trice0(const char* pFmt){TRICE_UNUSED(pFmt)}

// clang-format off
TRICE_INLINE void TRice0( const char * pFmt ){TRICE_UNUSED(pFmt)}
TRICE_INLINE void Trice0( const char * pFmt ){TRICE_UNUSED(pFmt)}
TRICE_INLINE void trice0( const char * pFmt ){TRICE_UNUSED(pFmt)}
// clang-format on
#else // #if defined(TRICE_CLEAN) && TRICE_CLEAN == 1

TRICE_INLINE void TRice0(uint16_t tid, const char* pFmt) {
Expand Down Expand Up @@ -844,15 +846,15 @@ TRICE_INLINE void trice0(uint16_t tid, const char* pFmt) {
#endif // #else // #if TRICE_TRANSFER_ORDER_IS_NOT_MCU_ENDIAN == 1

#if defined(TRICE_CLEAN) && TRICE_CLEAN == 1

TRICE_INLINE void triceAssertTrue(int idN, char* msg, int flag){TRICE_UNUSED(idN) TRICE_UNUSED(msg) TRICE_UNUSED(pFmt)} TRICE_INLINE void TriceAssertTrue(int idN, char* msg, int flag){TRICE_UNUSED(idN) TRICE_UNUSED(msg) TRICE_UNUSED(pFmt)} TRICE_INLINE void TRiceAssertTrue(int idN, char* msg, int flag){TRICE_UNUSED(idN) TRICE_UNUSED(msg) TRICE_UNUSED(pFmt)}

TRICE_INLINE void triceAssertFalse(int idN, char* msg, int flag){TRICE_UNUSED(idN) TRICE_UNUSED(msg) TRICE_UNUSED(pFmt)} TRICE_INLINE void TriceAssertFalse(int idN, char* msg, int flag){TRICE_UNUSED(idN) TRICE_UNUSED(msg) TRICE_UNUSED(pFmt)} TRICE_INLINE void TRiceAssertFalse(int idN, char* msg, int flag) {
TRICE_UNUSED(idN)
TRICE_UNUSED(msg)
TRICE_UNUSED(pFmt)
}

// clang-format off
TRICE_INLINE void triceAssertTrue( int idN, char* msg, int flag ){TRICE_UNUSED(idN) TRICE_UNUSED(msg) TRICE_UNUSED(pFmt)}
TRICE_INLINE void TriceAssertTrue( int idN, char* msg, int flag ){TRICE_UNUSED(idN) TRICE_UNUSED(msg) TRICE_UNUSED(pFmt)}
TRICE_INLINE void TRiceAssertTrue( int idN, char* msg, int flag ){TRICE_UNUSED(idN) TRICE_UNUSED(msg) TRICE_UNUSED(pFmt)}

TRICE_INLINE void triceAssertFalse( int idN, char* msg, int flag ){TRICE_UNUSED(idN) TRICE_UNUSED(msg) TRICE_UNUSED(pFmt)}
TRICE_INLINE void TriceAssertFalse( int idN, char* msg, int flag ){TRICE_UNUSED(idN) TRICE_UNUSED(msg) TRICE_UNUSED(pFmt)}
TRICE_INLINE void TRiceAssertFalse( int idN, char* msg, int flag ){TRICE_UNUSED(idN) TRICE_UNUSED(msg) TRICE_UNUSED(pFmt)}
// clang-format on
#else // #if defined(TRICE_CLEAN) && TRICE_CLEAN == 1

void triceAssertTrue(int idN, char* msg, int flag);
Expand Down

0 comments on commit 9625d07

Please sign in to comment.