Commit 3a41625f authored by Dimitri van Heesch's avatar Dimitri van Heesch

Fixed regression autolinking C# template such as MyGenericClass<T>.g()

parent bca6baee
......@@ -4433,7 +4433,7 @@ bool resolveRef(/* in */ const char *scName,
QCString tsName = name;
//bool memberScopeFirst = tsName.find('#')!=-1;
QCString fullName = substitute(tsName,"#","::");
if (fullName.find("anonymous_namespace{")==-1 && fullName.find('<')==-1)
if (fullName.find("anonymous_namespace{")==-1)
{
fullName = removeRedundantWhiteSpace(substitute(fullName,".","::"));
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment