| 30 | DEFINE_int32(alpha, -1, "alpha value used in sequence balance partition"); |
| 31 | |
| 32 | bool string_not_empty(const char*, const std::string& value) { |
| 33 | if (0 == value.length()) { return false; } |
| 34 | return true; |
| 35 | } |
| 36 | |
| 37 | DEFINE_validator(input, &string_not_empty); |
| 38 |
nothing calls this directly
no outgoing calls
no test coverage detected