mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-03 13:31:27 +12:00
ENSURES usage removed
This commit is contained in:
parent
b0f5796c90
commit
1f3433464c
9 changed files with 17 additions and 24 deletions
|
@ -2283,7 +2283,7 @@ std::string named_thread::get_name() const
|
|||
void named_thread::start_thread(const std::shared_ptr<void>& _this)
|
||||
{
|
||||
// Ensure it's not called from the constructor and the correct object is passed
|
||||
ENSURES(_this.get() == this);
|
||||
verify("named_thread::start_thread" HERE), _this.get() == this;
|
||||
|
||||
// Run thread
|
||||
thread_ctrl::spawn(m_thread, get_name(), [this, _this]()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue