@@ -204,7 +204,7 @@ namespace sio
204204 }
205205
206206 string_message (std::string&& v)
207- :message(flag_string),_v(move(v))
207+ :message(flag_string),_v(std:: move(v))
208208 {
209209 }
210210 public:
@@ -215,7 +215,7 @@ namespace sio
215215
216216 static message::ptr create (std::string&& v)
217217 {
218- return ptr (new string_message (move (v)));
218+ return ptr (new string_message (std:: move (v)));
219219 }
220220
221221 std::string const & get_string () const
@@ -269,7 +269,7 @@ namespace sio
269269
270270 void push (std::string&& text)
271271 {
272- _v.push_back (string_message::create (move (text)));
272+ _v.push_back (string_message::create (std:: move (text)));
273273 }
274274
275275 void push (std::shared_ptr<std::string> const & binary)
@@ -296,7 +296,7 @@ namespace sio
296296
297297 void insert (size_t pos,std::string&& text)
298298 {
299- _v.insert (_v.begin ()+pos, string_message::create (move (text)));
299+ _v.insert (_v.begin ()+pos, string_message::create (std:: move (text)));
300300 }
301301
302302 void insert (size_t pos,std::shared_ptr<std::string> const & binary)
@@ -361,7 +361,7 @@ namespace sio
361361
362362 void insert (const std::string & key,std::string&& text)
363363 {
364- _v[key] = string_message::create (move (text));
364+ _v[key] = string_message::create (std:: move (text));
365365 }
366366
367367 void insert (const std::string & key,std::shared_ptr<std::string> const & binary)
@@ -461,7 +461,7 @@ namespace sio
461461
462462 list (std::string&& text)
463463 {
464- m_vector.push_back (string_message::create (move (text)));
464+ m_vector.push_back (string_message::create (std:: move (text)));
465465 }
466466
467467 list (std::shared_ptr<std::string> const & binary)
@@ -489,7 +489,7 @@ namespace sio
489489
490490 void push (std::string&& text)
491491 {
492- m_vector.push_back (string_message::create (move (text)));
492+ m_vector.push_back (string_message::create (std:: move (text)));
493493 }
494494
495495 void push (std::shared_ptr<std::string> const & binary)
@@ -516,7 +516,7 @@ namespace sio
516516
517517 void insert (size_t pos,std::string&& text)
518518 {
519- m_vector.insert (m_vector.begin ()+pos, string_message::create (move (text)));
519+ m_vector.insert (m_vector.begin ()+pos, string_message::create (std:: move (text)));
520520 }
521521
522522 void insert (size_t pos,std::shared_ptr<std::string> const & binary)
0 commit comments