mirror of https://github.com/CGAL/cgal
fixed warning for using precond >= 0 for size_t
This commit is contained in:
parent
f6c6c2ea24
commit
f7a69d5fb0
|
|
@ -186,7 +186,7 @@ public:
|
|||
std::cout << "num variables = " << n << std::endl;
|
||||
std::cout << "num constraints = " << m << std::endl;
|
||||
}
|
||||
CGAL_precondition(n >= 1 && m >= 0);
|
||||
CGAL_precondition(n >= 1); // m >= 0
|
||||
|
||||
CGAL_precondition(q_vec.size() == n);
|
||||
CGAL_precondition(l_vec.size() == m && l_vec.size() == m);
|
||||
|
|
|
|||
Loading…
Reference in New Issue