Skip to content

Commit

Permalink
Update DatasetWriter move constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
mmarineBlueQuartz committed Apr 19, 2024
1 parent 0225938 commit 7eb4deb
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions src/simplnx/Utilities/Parsing/HDF5/Writers/DatasetWriter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@ DatasetWriter::DatasetWriter(IdType parentId, const std::string& datasetName)
#endif
}

DatasetWriter::DatasetWriter(DatasetWriter&& other) noexcept = default;

DatasetWriter::~DatasetWriter()
{
closeHdf5();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class SIMPLNX_EXPORT DatasetWriter : public ObjectWriter
DatasetWriter(IdType parentId, const std::string& datasetName);

DatasetWriter(const DatasetWriter& other) = delete;
DatasetWriter(DatasetWriter&& other) noexcept;
DatasetWriter(DatasetWriter&& other) noexcept = default;

/**
* @brief Default destructor
Expand Down

0 comments on commit 7eb4deb

Please sign in to comment.