Skip to content

Commit c937306

Browse files
authored
Merge pull request #12742 from msooseth/style_fix
Fixing style issue in ExecutionFramework.cpp
2 parents 999a53c + 66a779d commit c937306

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/ExecutionFramework.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ h160 ExecutionFramework::logAddress(size_t _logIdx) const
266266

267267
bytes ExecutionFramework::logData(size_t _logIdx) const
268268
{
269-
const auto& data = m_evmcHost->recorded_logs.at(_logIdx).data;
269+
auto const& data = m_evmcHost->recorded_logs.at(_logIdx).data;
270270
// TODO: Return a copy of log data, because this is expected from REQUIRE_LOG_DATA(),
271271
// but reference type like string_view would be preferable.
272272
return {data.begin(), data.end()};

0 commit comments

Comments
 (0)