remove operator=(const&) = default

This commit is contained in:
Li-Ta Lo 2022-02-08 17:53:14 -07:00
parent b28dee5778
commit b0452edf57
4 changed files with 0 additions and 8 deletions

@ -63,8 +63,6 @@ public:
{
}
UncertainArrayHandle(const Thisclass&) = default;
template <typename OtherValues, typename OtherStorage>
VTKM_CONT UncertainArrayHandle(const UncertainArrayHandle<OtherValues, OtherStorage>& src)
: Superclass(src)

@ -59,8 +59,6 @@ public:
{
}
UncertainCellSet(const Thisclass&) = default;
template <typename OtherCellSetList>
explicit VTKM_CONT UncertainCellSet(const UncertainCellSet<OtherCellSetList>& src)
: Superclass(src)

@ -404,7 +404,6 @@ class VTKM_CONT_EXPORT UnknownArrayHandle
public:
VTKM_CONT UnknownArrayHandle() = default;
UnknownArrayHandle(const UnknownArrayHandle&) = default;
template <typename T, typename S>
VTKM_CONT UnknownArrayHandle(const vtkm::cont::ArrayHandle<T, S>& array)
@ -412,8 +411,6 @@ public:
{
}
UnknownArrayHandle& operator=(const vtkm::cont::UnknownArrayHandle&) = default;
/// \brief Returns whether an array is stored in this `UnknownArrayHandle`.
///
/// If the `UnknownArrayHandle` is constructed without an `ArrayHandle`, it

@ -65,7 +65,6 @@ class VTKM_CONT_EXPORT UnknownCellSet
public:
VTKM_CONT UnknownCellSet() = default;
UnknownCellSet(const UnknownCellSet&) = default;
template <typename CellSetType>
VTKM_CONT UnknownCellSet(const CellSetType& cellSet)