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

@@ -532,10 +532,10 @@ void JSON::writeToStream (OutputStream& output, const var& data, const bool allO
//==============================================================================
//==============================================================================
class JSONTests : public UnitTestType <JSONTests>
class JSONTests : public UnitTest
{
public:
JSONTests() : UnitTestType <JSONTests> ("JSON") {}
JSONTests() : UnitTest ("JSON") { }
static String createRandomWideCharString (Random& r)
{
@@ -640,5 +640,5 @@ public:
};
#if BEAST_UNIT_TESTS
template class UnitTestType <JSONTests>;
static JSONTests jsonTests;
#endif