Skip to content
Snippets Groups Projects
Commit 799140d0 authored by Chris Cantwell's avatar Chris Cantwell
Browse files

Merge branch 'fix_field_move_ctor' into 'master'

fix Field move assignment ctor

See merge request !7
parents 3777665e 06a2426b
No related branches found
No related tags found
1 merge request!7fix Field move assignment ctor
...@@ -87,6 +87,7 @@ public: ...@@ -87,6 +87,7 @@ public:
m_storage = std::move(rhs.m_storage); m_storage = std::move(rhs.m_storage);
block_attributes = std::move(rhs.block_attributes); block_attributes = std::move(rhs.block_attributes);
component_names = std::move(rhs.component_names); component_names = std::move(rhs.component_names);
m_curVecWidth = std::move(rhs.m_curVecWidth);
return *this; return *this;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment