Menu

#5 @deffunc does not work correctly

open
nobody
None
5
2002-05-09
2002-05-09
No

if using @deffunc like following,

@deffunc function void function(void)

MemberRecord of function is set as following.

name = "function"
longname = "function"
fullname = "functionvoid function(void)"
decl = "void function(void)"

It seems not consistent with usual functions.
I guess it should be set like following.

name = "function"
longname = "function()"
fullname = "void function(void)"
decl = "void function(void)"

And additionally, the ducumentation introduces @deffunc
as following,

@deffunc ASSERT ASSERT( <expression< );

but last ';' seems unnecessary.

Discussion


Log in to post a comment.