mirror of
https://github.com/anope/anope.git
synced 2026-06-25 15:26:39 +02:00
Fix unnecessary uses of std::string.
This commit is contained in:
@@ -51,7 +51,7 @@ void Thread::Start()
|
||||
catch (const std::system_error &err)
|
||||
{
|
||||
this->flags[SF_DEAD] = true;
|
||||
throw CoreException("Unable to create thread: " + std::string(err.what()));
|
||||
throw CoreException("Unable to create thread: " + Anope::string(err.what()));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user