Ali Aghaeifar

Results 2 comments of Ali Aghaeifar

To solve this, I opened /src/fasthenry/resusage.h and changed `struct rusage timestuff;` to `inline struct rusage timestuff;` and `struct tms timestuff;` to `inline struct tms timestuff;`

Thank you for your suggestion! I hesitated to use a reference because, in my specific application, the function might modify the content, and I wanted to avoid unintended side effects.