| 102 | */ |
| 103 | template <typename T> |
| 104 | static bool integer_not_zero(const char*, T value) { |
| 105 | if (0 == value) { return false; } |
| 106 | return true; |
| 107 | } |
| 108 | |
| 109 | DEFINE_validator(input, &string_not_empty); |
| 110 | DEFINE_validator(types, &string_not_empty); |
nothing calls this directly
no outgoing calls
no test coverage detected