<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>Comments on: C bitfields suck&#8230;</title>
	<atom:link href="https://whats.all.this.brouhaha.com/2007/04/30/c-bitfields-suck/feed/" rel="self" type="application/rss+xml" />
	<link>https://whats.all.this.brouhaha.com/2007/04/30/c-bitfields-suck/</link>
	<description>miscellaneous musings and random rantings</description>
	<lastBuildDate>Sat, 28 Nov 2015 09:12:01 +0000</lastBuildDate>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.9</generator>
	<item>
		<title>By: Eric</title>
		<link>https://whats.all.this.brouhaha.com/2007/04/30/c-bitfields-suck/comment-page-1/#comment-3436</link>
		<dc:creator><![CDATA[Eric]]></dc:creator>
		<pubDate>Wed, 02 May 2007 22:41:40 +0000</pubDate>
		<guid isPermaLink="false">http://whats.all.this.brouhaha.com/?p=477#comment-3436</guid>
		<description><![CDATA[The structure is constant size: the fields add up to exactly 16 bits.  The compiler is adding an additional 16 bits of padding to make it 32 bits, which is allowed by the C standard but not desired in this case.

Even if there is a workaround for this compiler, I won&#039;t be able to use it because it won&#039;t be portable.]]></description>
		<content:encoded><![CDATA[<p>The structure is constant size: the fields add up to exactly 16 bits.  The compiler is adding an additional 16 bits of padding to make it 32 bits, which is allowed by the C standard but not desired in this case.</p>
<p>Even if there is a workaround for this compiler, I won&#8217;t be able to use it because it won&#8217;t be portable.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Les Hildenbrandt</title>
		<link>https://whats.all.this.brouhaha.com/2007/04/30/c-bitfields-suck/comment-page-1/#comment-3435</link>
		<dc:creator><![CDATA[Les Hildenbrandt]]></dc:creator>
		<pubDate>Wed, 02 May 2007 15:31:52 +0000</pubDate>
		<guid isPermaLink="false">http://whats.all.this.brouhaha.com/?p=477#comment-3435</guid>
		<description><![CDATA[Could you use sizeof() and conditionals to get a structure that was a constant size.  With the compiler I use, an int is 16 bits, so bitfields allways grow to the next 16 bit boundry.]]></description>
		<content:encoded><![CDATA[<p>Could you use sizeof() and conditionals to get a structure that was a constant size.  With the compiler I use, an int is 16 bits, so bitfields allways grow to the next 16 bit boundry.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
