Apply 'make format'

This commit is contained in:
github action 2026-02-25 06:02:10 +00:00
parent 4ff579f300
commit 0b39cf4865
2 changed files with 9 additions and 5 deletions

View File

@ -129,7 +129,8 @@ void VlTriggerScheduler::moveToResumeQueue(const char* eventDescription) {
if (!m_fired.empty()) {
VL_DEBUG_IF(VL_DBG_MSGF(" Moving to resume queue processes waiting for %s:\n",
eventDescription);
for (const auto& susp : m_fired) {
for (const auto& susp
: m_fired) {
VL_DBG_MSGF(" - ");
susp.dump();
});
@ -143,7 +144,8 @@ void VlTriggerScheduler::ready(const char* eventDescription) {
if (!m_awaiting.empty()) {
VL_DEBUG_IF(
VL_DBG_MSGF(" Committing processes waiting for %s:\n", eventDescription);
for (const auto& susp : m_awaiting) {
for (const auto& susp
: m_awaiting) {
VL_DBG_MSGF(" - ");
susp.dump();
});
@ -199,7 +201,8 @@ bool VlDynamicTriggerScheduler::evaluate() {
void VlDynamicTriggerScheduler::doPostUpdates() {
VL_DEBUG_IF(if (!m_post.empty())
VL_DBG_MSGF(" Doing post updates for processes:\n"); //
for (const auto& susp : m_post) {
for (const auto& susp
: m_post) {
VL_DBG_MSGF(" - ");
susp.dump();
});
@ -209,7 +212,8 @@ void VlDynamicTriggerScheduler::doPostUpdates() {
void VlDynamicTriggerScheduler::resume() {
VL_DEBUG_IF(if (!m_triggered.empty()) VL_DBG_MSGF(" Resuming processes:\n"); //
for (const auto& susp : m_triggered) {
for (const auto& susp
: m_triggered) {
VL_DBG_MSGF(" - ");
susp.dump();
});

View File

@ -1943,7 +1943,7 @@ public:
VlClassRef() = default;
// Init with nullptr
// cppcheck-suppress noExplicitConstructor
VlClassRef(VlNull) {};
VlClassRef(VlNull){};
template <typename... T_Args>
VlClassRef(VlDeleter& deleter, T_Args&&... args)
// () required here to avoid narrowing conversion warnings,