mirror of https://github.com/CGAL/cgal
Fix a line of code that was never tested
This commit is contained in:
parent
2a66790614
commit
c19c84a022
|
|
@ -191,7 +191,7 @@ public:
|
|||
typename Bmask::size_type bit_index = 0;
|
||||
for (std::vector<Sign>::const_iterator iter = mask.begin(), endIter = mask.end(); iter != endIter; ++iter)
|
||||
{
|
||||
std::string::value_type character = static_cast<char>(*iter);
|
||||
Sign character = *iter;
|
||||
CGAL_assertion(character == POSITIVE || character == NEGATIVE);
|
||||
|
||||
bmask[bit_index] = (character == POSITIVE);
|
||||
|
|
|
|||
Loading…
Reference in New Issue