antenna: Remove semicolon in function bodies

This commit is contained in:
Eduardo Almeida
2025-03-11 15:54:54 +00:00
parent 53aaf514ad
commit 5eab53b0a6
2 changed files with 6 additions and 2 deletions

View File

@@ -23,7 +23,9 @@ class SymmetricAdjacencyMatrixTestCase : public TestCase
* The constructor of the test case
*/
SymmetricAdjacencyMatrixTestCase()
: TestCase("SymmetricAdjacencyMatrix test case"){};
: TestCase("SymmetricAdjacencyMatrix test case")
{
}
private:
/**

View File

@@ -206,7 +206,9 @@ class UpdateOnChangeTestCase : public TestCase
*/
UpdateOnChangeTestCase(Ptr<AntennaModel> element, std::string name)
: TestCase(name),
m_element(element){};
m_element(element)
{
}
private:
/**