Fix a line of code that was never tested

This commit is contained in:
Laurent Rineau 2018-01-18 15:24:02 +01:00
parent 2a66790614
commit c19c84a022
1 changed files with 1 additions and 1 deletions

View File

@ -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);