This is the mail archive of the libstdc++@gcc.gnu.org mailing list for the libstdc++ project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: Incorrect char extraction code


On Mon, Jan 29, 2001 at 10:12:38AM -0500, Rosen, Hyman wrote:
> 
> These are clearly wrong; the result of a static_cast<char> is not an
> lvalue, so code that tries an extraction into a signed or unsigned char
> shouldn't even compile. Those casts need to be reinterpret_cast<char &>,
> and then you need to verify that you won't run afoul of gcc's alias
> detection.

Since __c is a reference, why not static_cast<char&>(__c) instead?  Then it
would be an lvalue, and we don't have to resort to reinterpret_cast.

-- 
pedwards at disaster dot jaj dot com  |  pme at sources dot redhat dot com
devphil at several other less interesting addresses in various dot domains
The gods do not protect fools.  Fools are protected by more capable fools.

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]