diff options
author | subtly <subtly@users.noreply.github.com> | 2015-01-06 23:51:10 +0800 |
---|---|---|
committer | subtly <subtly@users.noreply.github.com> | 2015-01-06 23:51:10 +0800 |
commit | 2cf2af356bbb22d15ceee5df1a9d27af0a4036cc (patch) | |
tree | 17fe00dc5d15c018589e00a2253316a5d8597032 | |
parent | 17c1c1eb6c4f6a4a59ca122d32c6b55140c983b2 (diff) | |
download | dexon-solidity-2cf2af356bbb22d15ceee5df1a9d27af0a4036cc.tar.gz dexon-solidity-2cf2af356bbb22d15ceee5df1a9d27af0a4036cc.tar.zst dexon-solidity-2cf2af356bbb22d15ceee5df1a9d27af0a4036cc.zip |
define constructors for windows
-rw-r--r-- | net.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -51,7 +51,7 @@ protected: struct TestNodeTable: public NodeTable { /// Constructor - using NodeTable::NodeTable; + TestNodeTable(ba::io_service& _io, KeyPair _alias, uint16_t _port = 30300): NodeTable(_io, _alias, _port) {} static std::vector<std::pair<KeyPair,unsigned>> createTestNodes(unsigned _count) { |