aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristoph Jentzsch <jentzsch.software@gmail.com>2014-10-01 19:59:36 +0800
committerChristoph Jentzsch <jentzsch.software@gmail.com>2014-10-01 19:59:36 +0800
commit8b3b711efff286d5ff409843c802c001a66fe3c7 (patch)
treed5311122adffc2663390b13a15ae251a323c42d7
parent4d7a55f8e21cb0067d11165d3bd21b9a82ee48ee (diff)
parent5e6121d3fe27ca9c93b99e5fa43a0e4a6465860c (diff)
downloaddexon-solidity-8b3b711efff286d5ff409843c802c001a66fe3c7.tar.gz
dexon-solidity-8b3b711efff286d5ff409843c802c001a66fe3c7.tar.zst
dexon-solidity-8b3b711efff286d5ff409843c802c001a66fe3c7.zip
Merge remote-tracking branch 'upstream/develop' into develop
-rw-r--r--TestHelper.cpp2
-rw-r--r--rlp.cpp2
2 files changed, 3 insertions, 1 deletions
diff --git a/TestHelper.cpp b/TestHelper.cpp
index 20c42a9b..03e67934 100644
--- a/TestHelper.cpp
+++ b/TestHelper.cpp
@@ -42,6 +42,8 @@ void mine(Client& c, int numBlocks)
void connectClients(Client& c1, Client& c2)
{
+ (void)c1;
+ (void)c2;
// TODO: Move to WebThree. eth::Client no longer handles networking.
#if 0
short c1Port = 20000;
diff --git a/rlp.cpp b/rlp.cpp
index b51f3a22..c3f9dda2 100644
--- a/rlp.cpp
+++ b/rlp.cpp
@@ -22,12 +22,12 @@
#include <fstream>
#include <sstream>
-#include "JsonSpiritHeaders.h"
#include <libdevcore/Log.h>
#include <libdevcore/RLP.h>
#include <libdevcore/Common.h>
#include <boost/test/unit_test.hpp>
#include <algorithm>
+#include "JsonSpiritHeaders.h"
using namespace std;
using namespace dev;