File tree 2 files changed +11
-11
lines changed
sbe-tool/src/main/cpp/otf
2 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -343,14 +343,14 @@ class Encoding
343
343
m_presence (presence),
344
344
m_primitiveType (type),
345
345
m_byteOrder (byteOrder),
346
- m_minValue (minValue),
347
- m_maxValue (maxValue),
348
- m_nullValue (nullValue),
349
- m_constValue (constValue),
350
- m_characterEncoding (characterEncoding),
351
- m_epoch (epoch),
352
- m_timeUnit (timeUnit),
353
- m_semanticType (semanticType)
346
+ m_minValue (std::move( minValue) ),
347
+ m_maxValue (std::move( maxValue) ),
348
+ m_nullValue (std::move( nullValue) ),
349
+ m_constValue (std::move( constValue) ),
350
+ m_characterEncoding (std::move( characterEncoding) ),
351
+ m_epoch (std::move( epoch) ),
352
+ m_timeUnit (std::move( timeUnit) ),
353
+ m_semanticType (std::move( semanticType) )
354
354
{
355
355
}
356
356
Original file line number Diff line number Diff line change @@ -86,9 +86,9 @@ class Token
86
86
m_encodedLength (encodedLength),
87
87
m_componentTokenCount (componentTokenCount),
88
88
m_signal (signal),
89
- m_name (name),
90
- m_description (description),
91
- m_encoding (encoding)
89
+ m_name (std::move( name) ),
90
+ m_description (std::move( description) ),
91
+ m_encoding (std::move( encoding) )
92
92
{
93
93
}
94
94
You can’t perform that action at this time.
0 commit comments