Bug #9571
False positive -Wfree-nonheap-object warning
Start date:
01/05/2022
Due date:
% Done:
100%
Estimated time:
Description
GCC 11 turns this warning on by default, and we get this warning in Wt/Signals/signal.hpp
on end_link
in emit(...)
.
Our logic guarantees that the delete this
in decref()
is never called, but GCC does not see through this.