Transition to clang-format 19

This commit is contained in:
Carles Fernandez
2024-12-26 11:18:41 +01:00
parent e805a08ff5
commit 700d4403d5
66 changed files with 628 additions and 458 deletions
+3 -3
View File
@@ -83,7 +83,7 @@ public:
assert(RF_channel >= 0);
if (RF_channel == 0)
{
}; // avoid unused param warning
}; // avoid unused param warning
return nullptr; // added to support raw array access (non pure virtual to allow left unimplemented)= 0;
}
virtual gr::basic_block_sptr get_right_block(int RF_channel)
@@ -91,14 +91,14 @@ public:
assert(RF_channel >= 0);
if (RF_channel == 0)
{
}; // avoid unused param warning
}; // avoid unused param warning
return nullptr; // added to support raw array access (non pure virtual to allow left unimplemented)= 0;
}
/*!
* \brief Start the flow of samples if needed.
*/
virtual void start(){};
virtual void start() {};
};