Skip to content

Commit

Permalink
[pathsegmentstorage] Deleting copy constructor and assignment operato…
Browse files Browse the repository at this point in the history
…r for PathSegmentDataStorage
  • Loading branch information
sherholz-intel committed Oct 14, 2022
1 parent b380801 commit 40fa9f4
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions openpgl/data/PathSegmentDataStorage.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ struct PathSegmentDataStorage
{
PathSegmentDataStorage() = default;

PathSegmentDataStorage(const PathSegmentDataStorage&) = delete;

PathSegmentDataStorage & operator=(const PathSegmentDataStorage&) = delete;

~PathSegmentDataStorage(){
#if defined(OPENPGL_PATHSEGMENT_STORAGE_USE_ARRAY)
if(m_segmentStorage)
Expand Down

0 comments on commit 40fa9f4

Please sign in to comment.