Hi, in NumericTraits.h, min() and max() was recently added for bool but return char. I think they should return bool :-) + static char min() { return false; } + static char max() { return true; } Gaetan