summaryrefslogtreecommitdiffstats
path: root/src/declinfo.l
diff options
context:
space:
mode:
authormueller <mueller@afe2bf4a-e733-0410-8a33-86f594647bc7>1999-12-15 19:35:18 (GMT)
committermueller <mueller@afe2bf4a-e733-0410-8a33-86f594647bc7>1999-12-15 19:35:18 (GMT)
commit79bf453de665e12ad859d8e24ddbec7ffbdb8e24 (patch)
tree67d769a18bd88b3e568049ab61b14c44926c4e9c /src/declinfo.l
parentf18128845407f8612668950e112c2d5c3e0ff5be (diff)
downloadDoxygen-79bf453de665e12ad859d8e24ddbec7ffbdb8e24.zip
Doxygen-79bf453de665e12ad859d8e24ddbec7ffbdb8e24.tar.gz
Doxygen-79bf453de665e12ad859d8e24ddbec7ffbdb8e24.tar.bz2
mods for doxygen-0.49-990901
Diffstat (limited to 'src/declinfo.l')
-rw-r--r--src/declinfo.l2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/declinfo.l b/src/declinfo.l
index 3737a67..df5c2ea 100644
--- a/src/declinfo.l
+++ b/src/declinfo.l
@@ -224,7 +224,7 @@ void parseFuncDecl(const QCString &decl,QCString &cl,QCString &ctl,QCString &t,
cl=scope.copy();
//printf("scope=`%s'\n",scope.data());
- int il,ir;
+ int il=0,ir=0;
if ((il=cl.find('<'))!=-1 && (ir=cl.findRev('>'))!=-1) // split up scope and template arguments
{
ctl=removeRedundantWhiteSpace(cl.mid(il,ir-il+1));