Merge pull request #745

4b425a3 core_tests: fix compile failure with GCC 4.8.4 (moneromooo-monero)
This commit is contained in:
Riccardo Spagni 2016-03-21 23:09:34 +02:00
commit 5f94526968
No known key found for this signature in database
GPG key ID: 55432DF31CCD4FCD

View file

@ -472,7 +472,7 @@ inline bool replay_events_through_core(cryptonote::core& cr, const std::vector<t
//--------------------------------------------------------------------------
template<class t_test_class>
struct get_test_options {
const std::pair<uint8_t, uint64_t> hard_forks[1] = {std::make_pair(1, 0)};
const std::pair<uint8_t, uint64_t> hard_forks[1] = {std::make_pair((uint8_t)1, (uint64_t)0)};
const cryptonote::test_options test_options = {
hard_forks
};