summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2020-05-15 09:38:52 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2020-05-15 09:38:52 (GMT)
commit9834a247d37a24c066973daaa902dd539f7e1ee7 (patch)
tree4b9ef4c209bb3a6ee00f000c0c788735358d1949
parent10787eed95266bb1a13c892fe4cf5a695dac1559 (diff)
parent268439bb6d9da5bb4a3d3ac4c120cec017eabeb0 (diff)
downloadDoxygen-9834a247d37a24c066973daaa902dd539f7e1ee7.zip
Doxygen-9834a247d37a24c066973daaa902dd539f7e1ee7.tar.gz
Doxygen-9834a247d37a24c066973daaa902dd539f7e1ee7.tar.bz2
Merge branch 'master' of github.com:doxygen/doxygen
-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")