Update formatting to clang-format 16 (#5370)

This commit is contained in:
Tyler Veness
2023-05-31 22:10:53 -07:00
committed by GitHub
parent a94a998002
commit 5fac18ff4a
48 changed files with 654 additions and 434 deletions

View File

@@ -57,9 +57,13 @@
HALSIM_Cancel##cbname##Callback(m_index, m_callback); \
} \
\
int32_t GetIndex() const { return m_index; } \
int32_t GetIndex() const { \
return m_index; \
} \
\
int GetChannel() const { return m_channel; } \
int GetChannel() const { \
return m_channel; \
} \
\
private: \
static void CallbackFunc(const char*, void* param, \
@@ -96,9 +100,13 @@
HALSIM_Cancel##cbname##Callback(m_index, m_channel, m_callback); \
} \
\
int32_t GetIndex() const { return m_index; } \
int32_t GetIndex() const { \
return m_index; \
} \
\
int32_t GetChannel() const { return m_channel; } \
int32_t GetChannel() const { \
return m_channel; \
} \
\
private: \
static void CallbackFunc(const char*, void* param, \