Skip to content

Commit

Permalink
Fix fillData in CubicalComplex
Browse files Browse the repository at this point in the history
It was calling clear instead of fill
  • Loading branch information
phcerdan committed Oct 7, 2020
1 parent aed4455 commit 3c1a2b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DGtal/topology/CubicalComplex.ih
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ DGtal::CubicalComplex<TKSpace, TCellContainer>::
fillData( Data data )
{
for ( Dimension d = 0; d <= dimension; ++d )
clearData( d, data );
fillData( d, data );
}
//-----------------------------------------------------------------------------
template <typename TKSpace, typename TCellContainer>
Expand Down

0 comments on commit 3c1a2b5

Please sign in to comment.