mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-28 13:28:01 +03:00
debugger: Fix trailing spaces in PPU register dump
This commit is contained in:
parent
3f44ecb77a
commit
d5eebd6ab4
3 changed files with 11 additions and 3 deletions
|
@ -124,7 +124,8 @@ namespace fmt
|
|||
}
|
||||
|
||||
std::vector<std::string> split(std::string_view source, std::initializer_list<std::string_view> separators, bool is_skip_empty = true);
|
||||
std::string trim(const std::string& source, const std::string& values = " \t");
|
||||
std::string trim(const std::string& source, std::string_view values = " \t");
|
||||
void trim_back(std::string& source, std::string_view values = " \t");
|
||||
|
||||
template <typename T>
|
||||
std::string merge(const T& source, const std::string& separator)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue