Re: [E-devel] [EGIT] [core/efl] master 01/08: edje_decc: use void to force empty function parameters

2015-11-26 Thread Tom Hacohen
As you said in the commit message, and just to correct terminology: You are not "forcing empty function parameters", it's just how the syntax works. int foo(); // Unspecified parameters int foo(void); // No parameters So probably it should be better described as "correct declaration of fun

Re: [E-devel] [EGIT] [core/efl] master 01/08: edje_decc: use void to force empty function parameters

2015-11-26 Thread Stefan Schmidt
Hello. On 26/11/15 17:39, Tom Hacohen wrote: > As you said in the commit message, and just to correct terminology: > > You are not "forcing empty function parameters", it's just how the > syntax works. > > int foo(); // Unspecified parameters > int foo(void); // No parameters > > So probably i

Re: [E-devel] [EGIT] [core/efl] master 01/08: edje_decc: use void to force empty function parameters

2015-11-26 Thread Jean-Philippe André
Hey Tom, On 27 November 2015 at 01:44, Stefan Schmidt wrote: > Hello. > > On 26/11/15 17:39, Tom Hacohen wrote: > > As you said in the commit message, and just to correct terminology: > > > > You are not "forcing empty function parameters", it's just how the > > syntax works. > > > > int foo();