aboutsummaryrefslogtreecommitdiff
path: root/src/threadengines/threadengine_pthread.cpp
diff options
context:
space:
mode:
authorGravatar Jackmcbarn2010-09-24 16:31:35 -0400
committerGravatar Jackmcbarn2010-09-24 16:31:35 -0400
commit103fe3c2004fe44c5d9e34aa856e3108c491583e (patch)
tree56975352531f39fb495b846dbcd7b231b3a2f042 /src/threadengines/threadengine_pthread.cpp
parentRename m_flatfile_auth and split the reader/writer off, and change the way th... (diff)
Replace "throw new" with "throw"
Diffstat (limited to 'src/threadengines/threadengine_pthread.cpp')
-rw-r--r--src/threadengines/threadengine_pthread.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/threadengines/threadengine_pthread.cpp b/src/threadengines/threadengine_pthread.cpp
index e34de01c7..52ed4649a 100644
--- a/src/threadengines/threadengine_pthread.cpp
+++ b/src/threadengines/threadengine_pthread.cpp
@@ -69,7 +69,7 @@ class ThreadSignalSocket : public EventHandler
{
int fds[2];
if (pipe(fds))
- throw new CoreException("Could not create pipe " + std::string(strerror(errno)));
+ throw CoreException("Could not create pipe " + std::string(strerror(errno)));
SetFd(fds[0]);
send_fd = fds[1];