Skip to content

Commit 160929e

Browse files
committed
issue #10511 C# namespace separators are output in C++ style
Corrected type in case of non C++
1 parent d1594b9 commit 160929e

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/memberdef.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1112,6 +1112,11 @@ static bool writeDefArgumentList(OutputList &ol,const Definition *scope,const Me
11121112
{
11131113
n=addTemplateNames(n,scope->name(),cName);
11141114
}
1115+
QCString sep = getLanguageSpecificSeparator(md->getLanguage(),true);
1116+
if (sep!="::")
1117+
{
1118+
n=substitute(n,"::",sep);
1119+
}
11151120
linkifyText(TextGeneratorOLImpl(ol),scope,md->getBodyDef(),md,n);
11161121
}
11171122
}

0 commit comments

Comments
 (0)