1
0
Fork 0

Don't use a parameter with a default value, calling code is clearer when the

value is specified explicitely.
This commit is contained in:
curt 2004-05-17 20:39:29 +00:00
parent d723504e94
commit 7358eb3f09

View file

@ -109,7 +109,7 @@ Rectangle makeBounds (const TGPolygon &polygon);
* @param s The string.
* @return A rectangle containing the bounds.
*/
Rectangle parseChunk (const string &s, double delta = 10.0);
Rectangle parseChunk (const string &s, double delta);
/**