Remove superfluous semicolons after method bodies

This commit is contained in:
Bolshakov 2022-12-02 20:41:06 +03:00 committed by Kim Gräsman
parent a83809985d
commit 42fece0244
1 changed files with 2 additions and 2 deletions

View File

@ -17,9 +17,9 @@
class IndirectClass {
public:
void Method() const { };
void Method() const { }
int a;
static void StaticMethod() { };
static void StaticMethod() { }
static int statica;
};