1 commit fa092012d67e9a44b6a71cade9d06adf7a5a1c5a
2 Author: gerrit <gerrit@feynman.camtech.ntu.edu.sg>
3 Date: Sun Jan 2 15:28:47 2011 +0800
5 fixed: never ending recursion
7 diff --git a/src/util.cpp b/src/util.cpp
8 index 76af586..a2a9c85 100644
11 @@ -3231,7 +3231,7 @@ static QCString getCanonicalTypeForIdentifier(
12 //result = mType->typeString();
13 if (word!=mType->typeString())
15 - result = getCanonicalTypeForIdentifier(d,fs,mType->typeString(),tSpec,count++);
16 + result = getCanonicalTypeForIdentifier(d,fs,mType->typeString(),tSpec,++count);