$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: Jim.Hyslop (jim.hyslop_at_[hidden])
Date: 2003-07-09 08:44:11
Vladimir Prus wrote:
> I'm guessing this should be
>
> std::cout << "Optimal CRC-8 : " << std::hex << (unsigned)crc_8()
> << std::endl;
>
> The way iostreams format chars is most likely not what you wanted.
True enough - and that includes signed vs. unsigned chars (both are handled
the same, at least with my compiler).
The result needs to be put into an unsigned *int* for cout to display the
numeric value.
-- Jim