Atmosphere/stratosphere
Lioncash dd10547ac2 setsys_settings_items: Less resource churn with combined key/value construction
The previous string construction discards two temporary std::string
instances (operator+ returns by value, not by reference), and creates a
std::string that it doesn't need to (the one around key). Instead we can
just append to the end of the initial std::string itself, saving on two
unnecessary created strings.

append() has a const char* overload as well (as does operator+), so we
can just append the key string as is without creating an entire new
string.
2019-06-03 21:37:53 -04:00
..
2019-06-03 12:19:05 -07:00
2019-05-28 00:26:56 +02:00
2019-05-27 18:44:09 -07:00
2019-05-02 17:54:05 -07:00
2019-06-03 12:19:05 -07:00
2019-05-02 19:33:12 -07:00
2019-04-25 11:24:25 -07:00