remove gcc warnings
git-svn-id: svn://svn.code.sf.net/p/loki-lib/code/trunk@507 7ec92016-0320-0410-acc4-a06ded1c099a
This commit is contained in:
parent
6a86ae304a
commit
2ada6bd1d7
1 changed files with 4 additions and 1 deletions
|
@ -74,7 +74,7 @@ namespace Loki
|
||||||
{
|
{
|
||||||
int status = 0;
|
int status = 0;
|
||||||
(void) status;
|
(void) status;
|
||||||
return LOKI_pthread_join(thread.pthread_, (void **)&status);
|
return LOKI_pthread_join(thread.pthread_, reinterpret_cast<void **>(&status));
|
||||||
}
|
}
|
||||||
|
|
||||||
static void JoinThreads(const std::vector<Thread*>& threads)
|
static void JoinThreads(const std::vector<Thread*>& threads)
|
||||||
|
@ -108,6 +108,9 @@ namespace Loki
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// $Log$
|
// $Log$
|
||||||
|
// Revision 1.4 2006/01/21 14:11:59 syntheticpp
|
||||||
|
// remove gcc warnings
|
||||||
|
//
|
||||||
// Revision 1.3 2006/01/21 01:02:58 rich_sposato
|
// Revision 1.3 2006/01/21 01:02:58 rich_sposato
|
||||||
// Moved Mutex class into Loki library.
|
// Moved Mutex class into Loki library.
|
||||||
//
|
//
|
||||||
|
|
Loading…
Reference in a new issue