Remove superfluous semicolons

This commit is contained in:
Olly Betts 2022-02-15 14:00:12 +13:00
commit fd6c0255a2
8 changed files with 15 additions and 15 deletions

View file

@ -7,8 +7,8 @@
class abstract_foo
{
public:
abstract_foo() { };
virtual ~abstract_foo() { };
abstract_foo() { }
virtual ~abstract_foo() { }
virtual int meth(int meth_param) = 0;
};
@ -16,9 +16,9 @@ public:
class abstract_bar : public abstract_foo
{
public:
abstract_bar() { };
abstract_bar() { }
virtual ~abstract_bar() { };
virtual ~abstract_bar() { }
virtual int meth(int meth_param) = 0;
int meth(int meth_param_1, int meth_param_2) { return 0; }
};

View file

@ -6,7 +6,7 @@
template <typename T, int r, int c> class test_Matrix {
public:
void Func(const test_Matrix<T,r,c> &m) { };
void Func(const test_Matrix<T,r,c> &m) { }
};
%}

View file

@ -13,7 +13,7 @@ public:
typedef Handle<SomeClass> hSomeClass;
class AnotherClass {
public:
void someFunc( hSomeClass a = hSomeClass() ) { };
void someFunc( hSomeClass a = hSomeClass() ) { }
};
%}

View file

@ -12,7 +12,7 @@
template <Polarization P>
struct Interface_ : Base
{
Interface_(const Base& b) { };
Interface_(const Base& b) { }
};
template <class Result>