diff --git a/include/tcframe/validator/number.hpp b/include/tcframe/validator/number.hpp index f26f7fa..7c2c7d8 100644 --- a/include/tcframe/validator/number.hpp +++ b/include/tcframe/validator/number.hpp @@ -1,7 +1,6 @@ namespace tcframe { -template -bool isBetween(T N, T mn, T mx) { +bool isBetween(long long N, long long mn, long long mx) { return N >= mn && N <= mx; }