Skip to content

Remove ambiguous CellSetExplicit constructor

CellSetExplicit had a constructor that took a single argument that is the number of points in the data and another constructor that had two arguments of the number of points and the name. The problem was that the latter constructor had a default argument for the second argument. Thus, if you tried to construct a CellSetExplicit with just the number of points, it would fail to compile because the compiler would not know which constructor to use.

Fix the issue by removing the single argument constructor.

Merge request reports