summaryrefslogtreecommitdiffstats
path: root/src/scanner.l
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2000-11-05 19:00:55 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2000-11-05 19:00:55 (GMT)
commitb12b7063e268e5cdf4f2dcd871c2447efa64e5c3 (patch)
tree912d22a207a65d4bb3ea7b2082ae40a279f17dd0 /src/scanner.l
parent4da971ee56729e0eb2b3a89f763fa0c410f02fc7 (diff)
downloadDoxygen-b12b7063e268e5cdf4f2dcd871c2447efa64e5c3.zip
Doxygen-b12b7063e268e5cdf4f2dcd871c2447efa64e5c3.tar.gz
Doxygen-b12b7063e268e5cdf4f2dcd871c2447efa64e5c3.tar.bz2
Release-1.2.3-20001105
Diffstat (limited to 'src/scanner.l')
-rw-r--r--src/scanner.l2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scanner.l b/src/scanner.l
index 5d8484e..abf1b26 100644
--- a/src/scanner.l
+++ b/src/scanner.l
@@ -1309,7 +1309,7 @@ TITLE [tT][iI][tT][lL][eE]
if ( *yytext == ',' )
{
int i=oldType.length();
- while (i>0 && (oldType[i-1]=='*' || oldType[i-1]==' ')) i--;
+ while (i>0 && (oldType[i-1]=='*' || oldType[i-1]=='&' || oldType[i-1]==' ')) i--;
current->type = oldType.left(i);
current->doc = oldDocs;
}