Add parens to remove GCC warnings

This commit is contained in:
Sylvain Pion 2008-08-19 09:46:56 +00:00
parent 60a380e2f4
commit b7cfe82eb9
1 changed files with 1 additions and 1 deletions

View File

@ -482,7 +482,7 @@ public :
static void set_relative_precision_of_to_double(const double & d)
{
CGAL_assertion(0 < d & d < 1);
CGAL_assertion((0 < d) & (d < 1));
relative_precision_of_to_double = d;
}