antenna: Remove semicolon in function bodies
This commit is contained in:
@@ -23,7 +23,9 @@ class SymmetricAdjacencyMatrixTestCase : public TestCase
|
||||
* The constructor of the test case
|
||||
*/
|
||||
SymmetricAdjacencyMatrixTestCase()
|
||||
: TestCase("SymmetricAdjacencyMatrix test case"){};
|
||||
: TestCase("SymmetricAdjacencyMatrix test case")
|
||||
{
|
||||
}
|
||||
|
||||
private:
|
||||
/**
|
||||
|
||||
@@ -206,7 +206,9 @@ class UpdateOnChangeTestCase : public TestCase
|
||||
*/
|
||||
UpdateOnChangeTestCase(Ptr<AntennaModel> element, std::string name)
|
||||
: TestCase(name),
|
||||
m_element(element){};
|
||||
m_element(element)
|
||||
{
|
||||
}
|
||||
|
||||
private:
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user