summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2013-09-17 18:34:59 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2013-09-17 18:34:59 (GMT)
commit3a41625ff1692477dbbca82ab734196e1efeb440 (patch)
tree75c4c44f911a7e724ac3bad91ab238b0f54003ca /src
parentbca6baee6685b489c36abec5a3b550921294e228 (diff)
downloadDoxygen-3a41625ff1692477dbbca82ab734196e1efeb440.zip
Doxygen-3a41625ff1692477dbbca82ab734196e1efeb440.tar.gz
Doxygen-3a41625ff1692477dbbca82ab734196e1efeb440.tar.bz2
Fixed regression autolinking C# template such as MyGenericClass<T>.g()
Diffstat (limited to 'src')
-rw-r--r--src/util.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.cpp b/src/util.cpp
index 60a0fe1..a67cf5c 100644
--- a/src/util.cpp
+++ b/src/util.cpp
@@ -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,".","::"));
}