| 45 | DEFINE_double(rate, 0.02, "start 'rate'% walker per one bsp, reduce memory consumption"); |
| 46 | |
| 47 | bool string_not_empty(const char*, const std::string& value) { |
| 48 | if (0 == value.length()) { return false; } |
| 49 | return true; |
| 50 | } |
| 51 | |
| 52 | DEFINE_validator(input, &string_not_empty); |
| 53 |
nothing calls this directly
no outgoing calls
no test coverage detected