You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
yuzu/src
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.
7 years ago
..
common string_util: Use emplace_back() in SplitString() instead of push_back() 7 years ago
core Merge pull request #768 from lioncash/string-view 7 years ago
input_common Rename logging macro back to LOG_* 7 years ago
tests arm_test_common: Get rid of truncation warnings 7 years ago
video_core gl_shader_decompiler: Remove redundant Subroutine construction in AddSubroutine() 7 years ago
yuzu Frontend: Check for more required OpenGL extensions during startup. 7 years ago
yuzu_cmd Frontend: Check for more required OpenGL extensions during startup. 7 years ago
.clang-format Remove special rules for Windows.h and library includes 9 years ago
CMakeLists.txt Massive removal of unused modules 7 years ago