$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Christopher Kohlhoff (chris_at_[hidden])
Date: 2006-06-04 21:11:54
Hi Beman,
Beman Dawes <bdawes_at_[hidden]> wrote:
> A refresh of the .zip file for the Endian library, based on
> comments received so far, is available at
> http://mysite.verizon.net/~beman/endian-0.2.zip
The interface looks pretty good to me, except that I'm a little
concerned that the endianness enum names are introduced
directly into the boost namespace. In particular 'big', 'little'
and 'native' seem like common names. Perhaps it could be:
namespace endianness {
enum type { big, ... };
}
Cheers,
Chris