From 93b085e465a42eb26ef8305edfc6d61ba6ce858f Mon Sep 17 00:00:00 2001 From: albert-github Date: Tue, 16 Oct 2018 11:04:51 +0200 Subject: issue_6547 Call graph missing due to ALIASES The fix as given in pull request #6548 worked but at some places it didn't work as the backslash (`\`) was eaten, replacing the backslash with a `@` solves the issue. --- src/doxygen.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doxygen.cpp b/src/doxygen.cpp index 13c60fb..54093eb 100644 --- a/src/doxygen.cpp +++ b/src/doxygen.cpp @@ -9889,7 +9889,7 @@ static void escapeAliases() while ((in=value.find("^^",p))!=-1) { newValue+=value.mid(p,in-p); - newValue+="\\_linebr"; + newValue+="@_linebr"; p=in+2; } newValue+=value.mid(p,value.length()-p); -- cgit v0.12