| 47 | DEFINE_uint64(sum_items_num, 0, "how many items need to sum."); |
| 48 | |
| 49 | bool string_not_empty(const char*, const std::string& value) { |
| 50 | if (0 == value.length()) { return false; } |
| 51 | return true; |
| 52 | } |
| 53 | |
| 54 | DEFINE_validator(input_relation_edges, &string_not_empty); |
| 55 | DEFINE_validator(input_behaviour_edges, &string_not_empty); |
nothing calls this directly
no outgoing calls
no test coverage detected