1
0
mirror of https://github.com/anope/anope.git synced 2026-06-26 12:16:38 +02:00

Epic commit to replace most of the strings in Anope with a single Anope::string class, plus some other little fixes here and there. If you follow 1.9.x development and are testing things, THIS is one of those things that NEEDS testing.

This commit is contained in:
Naram Qashat
2010-07-25 21:58:20 -04:00
parent 15d7f0f6fe
commit ae38212c1c
232 changed files with 7424 additions and 8911 deletions
+1 -1
View File
@@ -47,7 +47,7 @@ void ThreadEngine::Start(Thread *thread)
if (pthread_create(&thread->Handle, &threadengine_attr, entry_point, thread))
{
delete thread;
throw CoreException("Unable to create thread: " + std::string(strerror(errno)));
throw CoreException(Anope::string("Unable to create thread: ") + strerror(errno));
}
}