summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2020-01-19 14:15:37 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2020-01-19 14:15:37 (GMT)
commitcbeaf5763aef97b1f116c9996cb69c74133162bc (patch)
treea7349e7e41911099761a1a87646074c832fc16af /src
parent5792512d3c9a27a662d704b8f7a9a9f5fbc05080 (diff)
downloadDoxygen-cbeaf5763aef97b1f116c9996cb69c74133162bc.zip
Doxygen-cbeaf5763aef97b1f116c9996cb69c74133162bc.tar.gz
Doxygen-cbeaf5763aef97b1f116c9996cb69c74133162bc.tar.bz2
issue 7514: Missing parenthesis for typedef function pointer
Diffstat (limited to 'src')
-rw-r--r--src/doxygen.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doxygen.cpp b/src/doxygen.cpp
index e32f8da..51867be 100644
--- a/src/doxygen.cpp
+++ b/src/doxygen.cpp
@@ -2039,7 +2039,7 @@ static MemberDef *addVariableToClass(
}
else
{
- def=type+" "+name+root->args;
+ def=type+" "+name+args;
}
}
else