Browse Source

Windows fixes

cl-refactor
Paweł Bylica 10 years ago
parent
commit
e15859ed27
  1. 2
      evmjit/libevmjit/Arith256.cpp
  2. 6
      libp2p/NodeTable.h

2
evmjit/libevmjit/Arith256.cpp

@ -416,7 +416,7 @@ namespace
explicit operator uint128()
{
uint128 r = lo;
r |= ((uint128) mid) << 64;
r = r + ((uint128) mid) << 64;
return r;
}

6
libp2p/NodeTable.h

@ -168,10 +168,10 @@ public:
/// Returns the Node to the corresponding node id or the empty Node if that id is not found.
Node node(NodeId const& _id);
#ifndef BOOST_AUTO_TEST_SUITE
private:
#else
#if defined(BOOST_AUTO_TEST_SUITE) || defined(_MSC_VER) // MSVC includes access specifier in symbol name
protected:
#else
private:
#endif
/// Constants for Kademlia, derived from address space.

Loading…
Cancel
Save