Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -682,7 +682,7 @@ build_all()
{
build_from_tarball_boost $BOOST_URL $BOOST_ARCHIVE bzip2 . $PARALLEL "$BUILD_BOOST" "${BOOST_OPTIONS[@]}"
build_from_github zeromq libzmq master $PARALLEL ${ZMQ_OPTIONS[@]} "$@"
build_from_github libbitcoin secp256k1 version4 $PARALLEL ${SECP256K1_OPTIONS[@]} "$@"
build_from_github libbitcoin secp256k1 version5 $PARALLEL ${SECP256K1_OPTIONS[@]} "$@"
build_from_github libbitcoin libbitcoin version3 $PARALLEL ${BITCOIN_OPTIONS[@]} "$@"
build_from_travis libbitcoin libbitcoin-protocol version3 $PARALLEL ${BITCOIN_PROTOCOL_OPTIONS[@]} "$@"
}
Expand Down
6 changes: 3 additions & 3 deletions test/zmq/identifiers.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,16 +55,16 @@ BOOST_AUTO_TEST_CASE(identifiers__contains__default__not_zero)

BOOST_AUTO_TEST_CASE(identifiers__contains__one_value__expected)
{
const auto expected = 42u;
const intptr_t expected = 42u;
identifiers_fixture instance;
instance.push(reinterpret_cast<void*>(expected));
BOOST_REQUIRE(instance.contains(expected));
}

BOOST_AUTO_TEST_CASE(identifiers__contains__two_values__expected)
{
const auto expected1 = 99u;
const auto expected2 = 42u;
const intptr_t expected1 = 99u;
const intptr_t expected2 = 42u;
identifiers_fixture instance;
instance.push(reinterpret_cast<void*>(expected1));
instance.push(reinterpret_cast<void*>(expected2));
Expand Down