un named bit fields

S

sophia

Dear all,


what exactly is the purpose of un named bit field such as this

struct
{
int first_bit : 1;
unsigned : 14;
int last_bit : 1;
} bf;
 
R

robertwessel2

Dear all,

what exactly is the purpose of un named bit field such as this

struct
{
   int first_bit : 1;
   unsigned   : 14;
   int last_bit : 1;



} bf;


Spacing. Presumably this structure maps onto some externally defined
layout (given the details of how bit fields are implemented on this
particular implementation), and the ":14" defines a range of 14 unused
(or uninteresting) bits.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,774
Messages
2,569,598
Members
45,150
Latest member
MakersCBDReviews
Top