Fix gcc compile

This commit is contained in:
Vinnie Falco
2013-07-14 11:09:46 -07:00
parent 5c691c0883
commit 0008193a20
14 changed files with 73 additions and 93 deletions

View File

@@ -252,10 +252,10 @@ void SpinLock::enter() const noexcept
//==============================================================================
class AtomicTests : public UnitTestType <AtomicTests>
class AtomicTests : public UnitTest
{
public:
AtomicTests() : UnitTestType <AtomicTests> ("Atomic") {}
AtomicTests() : UnitTest ("Atomic") {}
void runTest()
{
@@ -351,5 +351,5 @@ public:
};
#if BEAST_UNIT_TESTS
template class UnitTestType <AtomicTests>;
static AtomicTests atomicTests;
#endif