We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3fe2541 commit 5695b4cCopy full SHA for 5695b4c
src/sst/core/componentInfo.cc
@@ -157,8 +157,8 @@ ComponentInfo::ComponentInfo(
157
ComponentInfo::ComponentInfo(ComponentInfo&& o) :
158
id_(o.id_),
159
parent_info(o.parent_info),
160
- name(std::move(o.name)),
161
- type(std::move(o.type)),
+ name(o.name),
+ type(o.type),
162
link_map(o.link_map),
163
component(o.component),
164
subComponents(std::move(o.subComponents)),
@@ -170,7 +170,7 @@ ComponentInfo::ComponentInfo(ComponentInfo&& o) :
170
statLoadLevel(o.statLoadLevel),
171
coordinates(std::move(o.coordinates)),
172
subIDIndex(o.subIDIndex),
173
- slot_name(std::move(o.slot_name)),
+ slot_name(o.slot_name),
174
slot_num(o.slot_num),
175
share_flags(o.share_flags)
176
{
0 commit comments