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

@@ -134,10 +134,10 @@ void Random::fillBitsRandomly (BigInteger& arrayToChange, int startBit, int numB
//==============================================================================
class RandomTests : public UnitTestType <RandomTests>
class RandomTests : public UnitTest
{
public:
RandomTests() : UnitTestType <RandomTests> ("Random") {}
RandomTests() : UnitTest ("Random") {}
void runTest()
{
@@ -166,5 +166,5 @@ public:
};
#if BEAST_UNIT_TESTS
template class UnitTestType <RandomTests>;
static RandomTests randomTests;
#endif