diff options
author | Tor Lillqvist <tml@collabora.com> | 2016-09-13 11:05:13 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2016-09-13 11:09:06 +0300 |
commit | 714de95ec549a7a79574cbe5a59450083c279dc6 (patch) | |
tree | 5360945f9b7840532837184e69b763e4741ea6bd /include/basegfx | |
parent | 0ae863c8ac4b712d67041e8bcf4069afbe71b494 (diff) |
Remove nonsense comments: // bitfield
Surely the actual bitfield syntax is enough to tell the code reader
that it is a bitfield.
Change-Id: Ic9552e01b19c8b34b2a17db56b9ff63e7c7de926
Diffstat (limited to 'include/basegfx')
-rw-r--r-- | include/basegfx/color/bcolormodifier.hxx | 2 | ||||
-rw-r--r-- | include/basegfx/matrix/b2dhommatrixtools.hxx | 1 | ||||
-rw-r--r-- | include/basegfx/pixel/bpixel.hxx | 2 |
3 files changed, 0 insertions, 5 deletions
diff --git a/include/basegfx/color/bcolormodifier.hxx b/include/basegfx/color/bcolormodifier.hxx index c14af2bc720b..73f9fbbe1aa3 100644 --- a/include/basegfx/color/bcolormodifier.hxx +++ b/include/basegfx/color/bcolormodifier.hxx @@ -290,7 +290,6 @@ namespace basegfx double mfValue; double mfInvValue; - /// bitfield bool mbUseIt : 1; protected: @@ -335,7 +334,6 @@ namespace basegfx double mfGreenOff; double mfBlueOff; - /// bitfield bool mbUseIt : 1; protected: diff --git a/include/basegfx/matrix/b2dhommatrixtools.hxx b/include/basegfx/matrix/b2dhommatrixtools.hxx index f6b955ca2ab5..5dcd1b47936d 100644 --- a/include/basegfx/matrix/b2dhommatrixtools.hxx +++ b/include/basegfx/matrix/b2dhommatrixtools.hxx @@ -186,7 +186,6 @@ namespace basegfx double mfRotate; double mfShearX; - // bitfield bool mbDecomposed : 1; void impCheckDecompose() diff --git a/include/basegfx/pixel/bpixel.hxx b/include/basegfx/pixel/bpixel.hxx index a9fea5b6dbde..bce856c27a97 100644 --- a/include/basegfx/pixel/bpixel.hxx +++ b/include/basegfx/pixel/bpixel.hxx @@ -34,7 +34,6 @@ namespace basegfx { struct { - // bitfield unsigned mnR : 8; // red intensity unsigned mnG : 8; // green intensity unsigned mnB : 8; // blue intensity @@ -43,7 +42,6 @@ namespace basegfx struct { - // bitfield unsigned mnValue : 32; // all values } maCombinedRGBO; } maPixelUnion; |