Fix gcc compile

This commit is contained in:
Vinnie Falco
2013-07-14 11:09:46 -07:00
parent 166e2b69cb
commit be312286c9
16 changed files with 176 additions and 127 deletions

View File

@@ -17,11 +17,10 @@
*/
//==============================================================================
class UnsignedIntegerTests : public UnitTestType <UnsignedIntegerTests>
class UnsignedIntegerTests : public UnitTest
{
public:
UnsignedIntegerTests ()
: UnitTestType <UnsignedIntegerTests> ("UnsignedInteger")
UnsignedIntegerTests () : UnitTest ("UnsignedInteger")
{
}
@@ -84,5 +83,5 @@ private:
};
#if BEAST_UNIT_TESTS
template class UnitTestType <UnsignedIntegerTests>;
static UnsignedIntegerTests unsignedIntegerTests;
#endif