From Csaba Halasz, "I have removed some unnecessary semicolons that mingw build warns about."

This commit is contained in:
Robert Osfield 2009-03-23 16:21:51 +00:00
parent 765b45224d
commit 3dbda7e9bc
2 changed files with 5 additions and 5 deletions

View File

@ -204,12 +204,12 @@ namespace OpenThreads {
return status!=0;
};
};
};
}
Thread* Thread::CurrentThread()
{
return (Thread* )TlsGetValue(Win32ThreadPrivateData::TLS.getId());
};
}
//----------------------------------------------------------------------------
//
@ -219,7 +219,7 @@ Thread* Thread::CurrentThread()
//
int Thread::SetConcurrency(int) {
return -1;
};
}
//----------------------------------------------------------------------------
//
@ -229,7 +229,7 @@ int Thread::SetConcurrency(int) {
//
int Thread::GetConcurrency() {
return -1;
};
}
//----------------------------------------------------------------------------
//

View File

@ -25,7 +25,7 @@ using namespace OpenThreads;
// so compiler can place it somewhere
Win32BarrierPrivateData::~Win32BarrierPrivateData()
{
};
}
//----------------------------------------------------------------------------
//