Lioncash f34dde32d1 string_util: Use emplace_back() in SplitString() instead of push_back()
This is equivalent to doing:

push_back(std::string(""));

which is likely not to cause issues, assuming a decent std::string
implementation with small-string optimizations implemented in its
design, however it's still a little unnecessary to copy that buffer
regardless. Instead, we can use emplace_back() to directly construct the
empty string within the std::vector instance, eliminating any possible
overhead from the copy.
2018-07-30 18:18:14 +08:00
..
2018-06-30 08:01:49 +08:00
2018-06-29 16:56:12 +03:00
2018-07-22 21:04:29 +01:00
2018-05-13 11:34:45 +01:00
2018-05-13 11:34:45 +01:00
2018-07-21 16:16:21 +02:00