Correct warnings found with CUDA 10.2 + gcc 4.8.5

Found during building on Centos7 based Power9 machines
This commit is contained in:
Robert Maynard 2020-02-26 15:16:35 -05:00
parent 6c91757351
commit f4153fe2f9
2 changed files with 5 additions and 5 deletions

@ -28,11 +28,11 @@ class VTKM_CONT_EXPORT CellSet
{
public:
CellSet() = default;
CellSet(const CellSet& src) = default;
CellSet(CellSet&& src) noexcept = default;
CellSet(const CellSet&) = default;
CellSet(CellSet&&) noexcept = default;
CellSet& operator=(const CellSet& src) = default;
CellSet& operator=(CellSet&& src) noexcept = default;
CellSet& operator=(const CellSet&) = default;
CellSet& operator=(CellSet&&) noexcept = default;
virtual ~CellSet();

@ -112,7 +112,7 @@ struct Invocation
{
}
Invocation(const Invocation& src) = default;
Invocation(const Invocation&) = default;
/// Defines a new \c Invocation type that is the same as this type except
/// with the \c Parameters replaced.