File tree Expand file tree Collapse file tree 1 file changed +6
-8
lines changed Expand file tree Collapse file tree 1 file changed +6
-8
lines changed Original file line number Diff line number Diff line change @@ -3311,18 +3311,16 @@ class PrimSpec {
3311
3311
// _vsmap = std::move(rhs._vsmap);
3312
3312
_current_vsmap = std::move (rhs._current_vsmap );
3313
3313
3314
- _variantSets = rhs._variantSets ;
3314
+ _variantSets = std::move ( rhs._variantSets ) ;
3315
3315
3316
- _primChildren = rhs._primChildren ;
3317
- _properties = rhs._properties ;
3318
- _variantChildren = rhs._variantChildren ;
3316
+ _primChildren = std::move ( rhs._primChildren ) ;
3317
+ _properties = std::move ( rhs._properties ) ;
3318
+ _variantChildren = std::move ( rhs._variantChildren ) ;
3319
3319
3320
- // FIXME: std::move doesn't work for nonstd::optional. need to write user-defined move constructor in
3321
- // PrimMetas?
3322
- _metas = rhs._metas ;
3320
+ _metas = std::move (rhs._metas );
3323
3321
3324
3322
_current_working_path = rhs._current_working_path ;
3325
- _asset_search_paths = rhs._asset_search_paths ;
3323
+ _asset_search_paths = std::move ( rhs._asset_search_paths ) ;
3326
3324
}
3327
3325
3328
3326
Specifier _specifier{Specifier::Def};
You can’t perform that action at this time.
0 commit comments