mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-07 06:25:03 +00:00
Remove unnecessary std::move().
This fixes a warning from clang-tidy: warning: std::move of the variable 'mapping' of the trivially-copyable type 'AxisValueMap' has no effect [performance-move-const-arg]
This commit is contained in:
parent
3cfdbd6717
commit
fb6d4d27d6
1 changed files with 1 additions and 1 deletions
|
@ -230,7 +230,7 @@ struct SegmentMaps : Array16Of<AxisValueMap>
|
|||
* duplicates here */
|
||||
if (mapping.must_include ())
|
||||
continue;
|
||||
value_mappings.push (std::move (mapping));
|
||||
value_mappings.push (mapping);
|
||||
}
|
||||
|
||||
AxisValueMap m;
|
||||
|
|
Loading…
Add table
Reference in a new issue