Lioncash 15397e2a89 AudioCommon: Use emplace_back instead of push_back in GetSoundBackends()
Constructs the strings directly within the container instead of
performing a construction, then a copy.

The reasoning is that the BACKEND_* strings are const char arrays, so
the push_back code is equivalent to:

push_back(std::string(BACKEND_WHATEVER)) instead of forwarding the
arguments to a constructed instance directly in the container.
2019-05-31 07:03:54 -04:00
..
2018-04-12 21:28:39 +02:00
2019-05-12 00:05:08 +02:00
2019-02-13 22:52:41 -02:00
2018-04-12 21:28:39 +02:00
2018-05-26 13:08:10 +02:00
2018-05-26 13:08:10 +02:00
2017-06-15 21:33:50 +02:00
2018-04-12 21:28:39 +02:00