I have a simple class:
template<size_t N, typename T>
class Int
{
bool valid(size_t index) { return index >= N; }
T t;
}
If I define an instance of this class as:
Int<0, Widget> zero;
I get a g++ warning:
warning: comparison is always true due to limited range of data type
I tried to do this, but I couldn't figure out how to partially specialize a function with a non-type template parameter. It looks like it might not be possible to disable this warning in g++. What is the proper way to either hide this warning, or to write this method such that it always returns true if N==0?
Thanks!
size_t, or could you go with a signed type? – Bill Jan 7 '11 at 23:26