$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Jens Maurer (Jens.Maurer_at_[hidden])
Date: 2001-01-16 12:07:49
Gary Powell wrote:
> Should we make a specialization for
> std::numeric_limits<boost::uintmax>::digits ?
No, because uintmax_t is just a typedef to some built-in type.
And you may not specialize std:: templates for built-in types,
because your library vendor should have done so already.
In short, std::numeric_limits<boost::uintmax_t>::digits
should already work as expected.
Jens Maurer