From 2d1394036fa658ee731f01782dba173c7102da7d Mon Sep 17 00:00:00 2001 From: Fons Rademakers <Fons.Rademakers@cern.ch> Date: Tue, 13 Nov 2007 13:40:08 +0000 Subject: [PATCH] From Joern Adamczewski: fixed issue 31085 by just changing the argument of static TThread::Delete to a reference. git-svn-id: http://root.cern.ch/svn/root/trunk@20782 27541ba8-7e3a-0410-8455-c3a389f83636 --- thread/inc/TThread.h | 2 +- thread/src/TThread.cxx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/thread/inc/TThread.h b/thread/inc/TThread.h index df129bd8269..62c58b92d01 100644 --- a/thread/inc/TThread.h +++ b/thread/inc/TThread.h @@ -154,7 +154,7 @@ public: static Int_t Sleep(ULong_t secs, ULong_t nanos = 0); static Int_t GetTime(ULong_t *absSec, ULong_t *absNanoSec); - static Int_t Delete(TThread *th); + static Int_t Delete(TThread *&th); static void **Tsd(void *dflt, Int_t k); // Cancellation diff --git a/thread/src/TThread.cxx b/thread/src/TThread.cxx index c9e7962f28d..2b82e012849 100644 --- a/thread/src/TThread.cxx +++ b/thread/src/TThread.cxx @@ -300,7 +300,7 @@ TThread::~TThread() } //______________________________________________________________________________ -Int_t TThread::Delete(TThread *th) +Int_t TThread::Delete(TThread *&th) { // Static method to delete the specified thread. -- GitLab