diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2013-09-17 18:34:59 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2013-09-17 18:34:59 (GMT) |
commit | 3a41625ff1692477dbbca82ab734196e1efeb440 (patch) | |
tree | 75c4c44f911a7e724ac3bad91ab238b0f54003ca /src/util.cpp | |
parent | bca6baee6685b489c36abec5a3b550921294e228 (diff) | |
download | Doxygen-3a41625ff1692477dbbca82ab734196e1efeb440.zip Doxygen-3a41625ff1692477dbbca82ab734196e1efeb440.tar.gz Doxygen-3a41625ff1692477dbbca82ab734196e1efeb440.tar.bz2 |
Fixed regression autolinking C# template such as MyGenericClass<T>.g()
Diffstat (limited to 'src/util.cpp')
-rw-r--r-- | src/util.cpp | 2 |
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,".","::")); } |