Skip to content

Commit

Permalink
tracing: Fix test compilation with VS 2015
Browse files Browse the repository at this point in the history
  • Loading branch information
chfast committed Jul 25, 2018
1 parent d951426 commit fcf599a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/vmtester/tests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@ TEST_F(evmc_vm_test, version)

TEST_F(evmc_vm_test, set_tracer)
{
static constexpr auto tracer_callback = [](evmc_tracer_context*, size_t, evmc_status_code,
int64_t, size_t, const evmc_uint256be*, size_t,
size_t, size_t, const uint8_t*) noexcept {};
static const auto tracer_callback = [](evmc_tracer_context*, size_t, evmc_status_code, int64_t,
size_t, const evmc_uint256be*, size_t, size_t, size_t,
const uint8_t*) noexcept {};
if (vm->set_tracer)
vm->set_tracer(vm, tracer_callback, nullptr);
}

0 comments on commit fcf599a

Please sign in to comment.