summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README.md4
-rw-r--r--src/perlmodgen.cpp9
2 files changed, 11 insertions, 2 deletions
diff --git a/README.md b/README.md
index 8572e6e..b0cf01c 100644
--- a/README.md
+++ b/README.md
@@ -27,7 +27,7 @@ Doxygen can help you in three ways:
Download
---------
The latest binaries and source of Doxygen can be downloaded from:
-* http://www.doxygen.org/
+* https://www.doxygen.nl/
Developers
---------
@@ -38,7 +38,7 @@ Developers
* Doxygen's Doxygen Documentation: <a href="https://codedocs.xyz/doxygen/doxygen/"><img src="https://codedocs.xyz/doxygen/doxygen.svg"/></a>
-* Install: Please read the installation section of the manual (http://www.doxygen.org/manual/install.html)
+* Install: Please read the installation section of the manual (https://www.doxygen.nl/manual/install.html)
* Project stats: https://www.openhub.net/p/doxygen
diff --git a/src/perlmodgen.cpp b/src/perlmodgen.cpp
index b6f663a..a08e480 100644
--- a/src/perlmodgen.cpp
+++ b/src/perlmodgen.cpp
@@ -1705,6 +1705,15 @@ void PerlModGenerator::generatePerlModForMember(const MemberDef *md,const Defini
}
}
+ /* DGA: fix #7495 Perlmod does not generate bitfield */
+ if (md->memberType() == MemberType_Variable && md->bitfieldString())
+ {
+ QCString bitfield = md->bitfieldString();
+ if (bitfield.at(0) == ':') bitfield = bitfield.mid(1);
+ m_output.addFieldQuotedString("bitfield", bitfield);
+ }
+ /* DGA: end of fix #7495 */
+
const MemberDef *rmd = md->reimplements();
if (rmd)
m_output.openHash("reimplements")