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

@@ -2075,10 +2075,10 @@ String String::fromUTF8 (const char* const buffer, int bufferSizeBytes)
//==============================================================================
//==============================================================================
class StringTests : public UnitTestType <StringTests>
class StringTests : public UnitTest
{
public:
StringTests() : UnitTestType <StringTests> ("String") {}
StringTests() : UnitTest ("String") { }
template <class CharPointerType>
struct TestUTFConversion
@@ -2403,5 +2403,5 @@ public:
};
#if BEAST_UNIT_TESTS
template class UnitTestType <StringTests>;
static StringTests stringTests;
#endif