Fix more warnings.

This commit is contained in:
Victor Zverovich 2014-02-20 08:02:32 -08:00
parent 8c4425a00f
commit 7abd6443ac

View File

@ -224,7 +224,7 @@ struct TypeSelector<false> { typedef uint64_t Type; };
template <bool IsSigned>
struct SignChecker {
template <typename T>
static bool IsNegative(T value) { return false; }
static bool IsNegative(T) { return false; }
};
template <>