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

@ -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) { }
};
%}