Fixed problem detecting function definitions using circumflexes used for managed classes under MS.NET.

git-svn-id: svn://svn.code.sf.net/p/ctags/code/trunk@780 c5d04d22-be80-434c-894e-aa346cc9e8e8
This commit is contained in:
dhiebert 2011-12-10 22:48:25 +00:00
parent 27c665604b
commit 281d7e89e9
1 changed files with 3 additions and 0 deletions

3
c.c
View File

@ -2121,6 +2121,9 @@ static int parseParens (statementInfo *const st, parenInfo *const info)
switch (c)
{
case '^':
break;
case '&':
case '*':
info->isPointer = TRUE;