Re: [E-devel] one tidbit in E code, Q about cast to void...

2017-05-22 Thread Vincent Torri
hey On Tue, May 23, 2017 at 5:02 AM, brane212 wrote: > While finding my way throught git sources, I've stumbled across this in > e_start_main.c, line 366, function _e_ptrace_attach: > > > (void)child; > (void)really_know; > (void)status; > > > It's #ifdeffed-out

[E-devel] one tidbit in E code, Q about cast to void...

2017-05-22 Thread brane212
While finding my way throught git sources, I've stumbled across this in e_start_main.c, line 366, function _e_ptrace_attach: (void)child; (void)really_know; (void)status; It's #ifdeffed-out of HAVE_SYS_PTRACE_H It's cast of three input variables (int,int,Eina_Bool) to void. I've