Kaydet (Commit) 60f35eb4 authored tarafından Noel Grandin's avatar Noel Grandin

drop default param from Fraction::Fraction

because if I make call-sites use the default, I get warnings about
ambiguous functional conversions

Change-Id: Ifd452c946832d0f9d62a10a46d90fe1ea3e79945
üst 4aca836a
......@@ -39,7 +39,7 @@ public:
Fraction();
Fraction( const Fraction & rFrac );
Fraction( Fraction && rFrac );
Fraction( long nNum, long nDen=1 );
Fraction( long nNum, long nDen );
Fraction( double dVal );
~Fraction();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment