From d56b2e5baf2a7e3e723a6f30ee49200461ab7de0 Mon Sep 17 00:00:00 2001 From: moneromooo-monero Date: Sat, 13 Feb 2016 19:49:36 +0000 Subject: [PATCH] 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. --- tests/core_tests/chaingen.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/core_tests/chaingen.h b/tests/core_tests/chaingen.h index f2bbb734..d0d912cb 100644 --- a/tests/core_tests/chaingen.h +++ b/tests/core_tests/chaingen.h @@ -497,7 +497,7 @@ inline bool do_replay_events(std::vector& 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 gto; + get_test_options gto; if (!c.init(vm, >o.test_options)) { std::cout << concolor::magenta << "Failed to init core" << concolor::normal << std::endl;