mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-15 11:18:36 +12:00
Fix std::basic_string warnings (#16261)
This commit is contained in:
parent
2262ac1684
commit
2b0f786b2d
22 changed files with 147 additions and 130 deletions
|
@ -1412,7 +1412,7 @@ std::vector<std::pair<u32, u32>> spu_thread::dump_callstack_list() const
|
|||
std::vector<bool> passed(_pc / 4);
|
||||
|
||||
// Start with PC
|
||||
std::basic_string<u32> start_points{_pc};
|
||||
std::vector<u32> start_points{_pc};
|
||||
|
||||
bool is_ok = false;
|
||||
bool all_failed = false;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue