Skip to content
Snippets Groups Projects
Commit 251027e0 authored by Norihiro Watanabe's avatar Norihiro Watanabe
Browse files

use multi-component version of initPropertyValue() in clone()

parent 0278a9e1
No related branches found
No related tags found
No related merge requests found
...@@ -197,7 +197,8 @@ public: ...@@ -197,7 +197,8 @@ public:
); );
// copy pointers to property values // copy pointers to property values
for (std::size_t j(0); j<_values.size(); j++) { for (std::size_t j(0); j<_values.size(); j++) {
t->initPropertyValue(j, *(_values[j])); std::vector<T> values(_values[j], _values[j] + _n_components);
t->initPropertyValue(j, values);
} }
return t; return t;
} }
......
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