Skip to content

Hotfix For Constructor Empty Types

Latest
Compare
Choose a tag to compare
@mccartnm mccartnm released this 12 Aug 13:56
6fd4789
class Foo
{
    Foo();
};
// Became
 Foo::Foo() //...
^ // Bad

Implementing Foo(); was giving an extra space at the start of the line because it has an empty type.