Test stuff into cpp from header.

Additional debug stuff in cmake.
This commit is contained in:
Gav Wood 2015-02-10 20:53:38 +01:00
parent 92fd2b191d
commit 9a792edb33
2 changed files with 3 additions and 3 deletions

View File

@ -64,6 +64,9 @@ void connectClients(Client& c1, Client& c2)
namespace test
{
struct ValueTooLarge: virtual Exception {};
bigint const c_max256plus1 = bigint(1) << 256;
ImportTest::ImportTest(json_spirit::mObject& _o, bool isFiller): m_TestObject(_o)
{
importEnv(_o["env"].get_obj());

View File

@ -42,9 +42,6 @@ void connectClients(Client& c1, Client& c2);
namespace test
{
struct ValueTooLarge: virtual Exception {};
bigint const c_max256plus1 = bigint(1) << 256;
class ImportTest
{
public: