Wrong stats of `pragma(inline, true)`-functions when compiling with `-cov` flag

Per Nordlöw per.nordlow at gmail.com
Sun Aug 2 11:29:07 UTC 2020


On Sunday, 2 August 2020 at 11:15:53 UTC, Per Nordlöw wrote:
> The problem goes away when I remove the `pragma(inline, 
> true)`-directives from the affected function.

In the meanwhile I can elide this issue via

     version(D_Coverage) {} else pragma(inline, true);

in-place of

     pragma(inline, true);

.


More information about the Digitalmars-d mailing list