core_tests: fix a compile problem with CLANG

It doesn't like const objects from classes that do not have
a user defined ctor, apparently.

Reported by othe.
This commit is contained in:
moneromooo-monero 2016-02-13 19:49:36 +00:00
parent 63e2d4195b
commit d56b2e5baf
No known key found for this signature in database
GPG key ID: 686F07454D6CEFC3

View file

@ -497,7 +497,7 @@ inline bool do_replay_events(std::vector<test_event_entry>& events)
cryptonote::core c(&pr);
// FIXME: make sure that vm has arg_testnet_on set to true or false if
// this test needs for it to be so.
const get_test_options<t_test_class> gto;
get_test_options<t_test_class> gto;
if (!c.init(vm, &gto.test_options))
{
std::cout << concolor::magenta << "Failed to init core" << concolor::normal << std::endl;