Lioncash 26a157cd31 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-22 15:36:32 -04:00
..
2016-03-13 04:54:23 +01:00
2018-07-07 14:17:44 +02:00
2018-04-13 23:48:22 -04:00
2018-07-07 13:59:18 +02:00
2016-12-05 19:09:16 +01:00