@@ -73,7 +73,7 @@ bool DynamicEventDB::getEventStatus(string eventName, JValue &extra)
73
73
74
74
bool DynamicEventDB::replaceEventsInfo (JValue &events, string origin, string &result)
75
75
{
76
- result = origin;
76
+ result = std::move ( origin) ;
77
77
78
78
for (int i = 0 ; i < events.arraySize (); i++) {
79
79
string pattern = " ${" + events[i].asString () + " }" ;
@@ -165,7 +165,7 @@ bool DynamicEventDB::existEvent(GMainLoop* mainLoop, string eventName, int secon
165
165
" EventCore waits event(%s)/timeout(%d)" ,
166
166
eventName.c_str (), seconds);
167
167
168
- m_existEvent = eventName;
168
+ m_existEvent = std::move ( eventName) ;
169
169
m_waitEventTimeoutId = g_timeout_add_seconds (seconds, DynamicEventDB::_waitEventTimeout, this );
170
170
m_isInLoop = true ;
171
171
while (m_isInLoop) {
@@ -192,7 +192,7 @@ bool DynamicEventDB::waitEvent(GMainLoop* mainLoop, string eventName, int second
192
192
" EventCore waits event(%s)/timeout(%d)" ,
193
193
eventName.c_str (), seconds);
194
194
195
- m_waitEvent = eventName;
195
+ m_waitEvent = std::move ( eventName) ;
196
196
m_waitEventTimeoutId = g_timeout_add_seconds (seconds, DynamicEventDB::_waitEventTimeout, this );
197
197
m_isInLoop = true ;
198
198
while (m_isInLoop) {
@@ -276,7 +276,7 @@ bool DynamicEventDB::triggerEvent(string eventName, JValue extra)
276
276
callEventListeners (eventName, TriggerEvent);
277
277
278
278
if (!m_asyncEventData.empty ())
279
- callAsyncEventListeners (eventName);
279
+ callAsyncEventListeners (std::move ( eventName) );
280
280
281
281
return true ;
282
282
}
@@ -303,7 +303,7 @@ bool DynamicEventDB::clearEvent(string eventName)
303
303
m_waitEventTimeoutId = 0 ;
304
304
m_isInLoop = false ;
305
305
}
306
- callEventListeners (eventName, ClearEvent);
306
+ callEventListeners (std::move ( eventName) , ClearEvent);
307
307
return true ;
308
308
}
309
309
0 commit comments