This means a default argument in the constructor declaration.
You may omit names of parameters in declarations or definitions of functions if they are not used. For example
1 2 3
int function( int = 10, int = 20 );
int function( int x, int y ) { return ( x + y ); }