'warn' parameter not used in write_part() routine
Closed this issue · 1 comments
MichaelChirico commented
Line 3470 in 001bdfb
This is flagged by clang
's -Wunused-but-set-parameter
. Reading the implementation the warning looks good -- the routine takes warn
as an input but doesn't use it.
Should a warning be thrown somewhere if it winds up true
? Or perhaps it should be dropped.
I'm happy to file a PR but lack context on what's the right fix.