Seen both locally and in the Travis fuzz build:
test/fuzz/addrdb.cpp:20:21: warning: unused variable 'ban_entry' [-Wunused-variable]
const CBanEntry ban_entry = [&] {
^
1 warning generated.
Seen both locally and in the Travis fuzz build:
test/fuzz/addrdb.cpp:20:21: warning: unused variable 'ban_entry' [-Wunused-variable]
const CBanEntry ban_entry = [&] {
^
1 warning generated.
This code was added in a8695db7... pinging @practicalswift :)
(void)ban_entry should be enough to silence this warning.
The point of the code is to exercise all CBanEntry ctors :)