summaryrefslogtreecommitdiffstats
path: root/src/docparser.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2019-08-07 08:56:17 (GMT)
committerGitHub <noreply@github.com>2019-08-07 08:56:17 (GMT)
commitade74102d869ce21bef28b60deead0bc4e63bb36 (patch)
tree632ca4fac592c2a1d3283e0ba8f8aa7671a5d16c /src/docparser.cpp
parentb676f2009ba9e6e953f9e3a999342b7dad79b1bf (diff)
parent67cd1a3bf4981fd755ada6eeb85622b46638a749 (diff)
downloadDoxygen-ade74102d869ce21bef28b60deead0bc4e63bb36.zip
Doxygen-ade74102d869ce21bef28b60deead0bc4e63bb36.tar.gz
Doxygen-ade74102d869ce21bef28b60deead0bc4e63bb36.tar.bz2
Merge pull request #7042 from albert-github/feature/bug_632754
Bug 632754 - The \copydoc Command Requires The Use of C++ Syntax in C# Code
Diffstat (limited to 'src/docparser.cpp')
-rw-r--r--src/docparser.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/docparser.cpp b/src/docparser.cpp
index 550aba2..b97bf1c 100644
--- a/src/docparser.cpp
+++ b/src/docparser.cpp
@@ -686,6 +686,8 @@ static bool findDocsForMemberOrCompound(const char *commandName,
*pBrief="";
*pDef=0;
QCString cmdArg=substitute(commandName,"#","::");
+ cmdArg = replaceScopeSeparator(cmdArg);
+
int l=cmdArg.length();
if (l==0) return FALSE;
@@ -711,7 +713,6 @@ static bool findDocsForMemberOrCompound(const char *commandName,
QCString name=removeRedundantWhiteSpace(cmdArg.left(funcStart));
QCString args=cmdArg.right(l-funcStart);
-
// try if the link is to a member
const MemberDef *md=0;
const ClassDef *cd=0;