From 7358eb3f09b3d83943f0a3357225a4ed2fe252ec Mon Sep 17 00:00:00 2001 From: curt Date: Mon, 17 May 2004 20:39:29 +0000 Subject: [PATCH] Don't use a parameter with a default value, calling code is clearer when the value is specified explicitely. --- src/Lib/Geometry/util.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Lib/Geometry/util.hxx b/src/Lib/Geometry/util.hxx index 887f753f..2fdb8c03 100644 --- a/src/Lib/Geometry/util.hxx +++ b/src/Lib/Geometry/util.hxx @@ -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); /**