From b00761b30a1d399f95adfe823937c05a64476155 Mon Sep 17 00:00:00 2001 From: Dimitri van Heesch Date: Wed, 25 May 2016 11:23:47 +0200 Subject: Bug 766698 - VHDL: missing last sign in html documentation of constant declaration --- src/doxygen.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/doxygen.cpp b/src/doxygen.cpp index e1f8440..b67ce18 100644 --- a/src/doxygen.cpp +++ b/src/doxygen.cpp @@ -2654,7 +2654,10 @@ static MemberDef *addVariableToFile( */ static int findFunctionPtr(const QCString &type,int lang, int *pLength=0) { - if (lang == SrcLangExt_Fortran) return -1; // Fortran does not have function pointers + if (lang == SrcLangExt_Fortran || lang == SrcLangExt_VHDL) + { + return -1; // Fortran and VHDL do not have function pointers + } static const QRegExp re("([^)]*[\\*\\^][^)]*)"); int i=-1,l; int bb=type.find('<'); -- cgit v0.12