Remove superfluous semicolons
This commit is contained in:
parent
abfd630c6d
commit
fd6c0255a2
8 changed files with 15 additions and 15 deletions
|
|
@ -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; }
|
||||
};
|
||||
|
|
|
|||
|
|
@ -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) { }
|
||||
};
|
||||
%}
|
||||
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@ public:
|
|||
typedef Handle<SomeClass> hSomeClass;
|
||||
class AnotherClass {
|
||||
public:
|
||||
void someFunc( hSomeClass a = hSomeClass() ) { };
|
||||
void someFunc( hSomeClass a = hSomeClass() ) { }
|
||||
};
|
||||
|
||||
%}
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@
|
|||
template <Polarization P>
|
||||
struct Interface_ : Base
|
||||
{
|
||||
Interface_(const Base& b) { };
|
||||
Interface_(const Base& b) { }
|
||||
};
|
||||
|
||||
template <class Result>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue