Now that you've changed X's signature from the way it was in the original unedited question, it's easily implemented using Boost.Integer:
#include <boost/static_assert.hpp>
#include <boost/cstdint.hpp>
#include <boost/integer_traits.hpp>
template<
typename IntType,
boost::uint64_t Value,
bool IsSigned = boost::integer_traits<IntType>::is_signed
>
struct validate_range;
template<typename IntType, boost::uint64_t Value>
struct validate_range<IntType, Value, true>
{
typedef boost::integer_traits<IntType> traits_t;
static bool const value =
static_cast<boost::int64_t>(Value) >= traits_t::const_min &&
static_cast<boost::int64_t>(Value) <= traits_t::const_max;
};
template<typename IntType, boost::uint64_t Value>
struct validate_range<IntType, Value, false>
{
typedef boost::integer_traits<IntType> traits_t;
static bool const value =
Value >= traits_t::const_min &&
Value <= traits_t::const_max;
};
template<typename IntType, boost::uint64_t Value>
struct X
{
BOOST_STATIC_ASSERT_MSG(
(validate_range<IntType, Value>::value),
"Value constant is out of range"
);
};
int main()
{
X<char, -2> x1; // fine
X<char, 2> x2; // fine
X<char, 255> x3; // fails when char is signed by default
X<unsigned char, -2> x4; // fails
X<unsigned char, 255> x5; // fine
X<unsigned char, 300> x6; // fails
}
std::vector, not continue down the incorrect path. And you can answer in that fashion because you know the goal, not the step. – GManNickG Apr 5 '11 at 18:42