| 35 | DEFINE_uint32(type, 0, "0 -- always pull, 1 -- push-pull, else -- push"); |
| 36 | |
| 37 | bool string_not_empty(const char*, const std::string& value) { |
| 38 | if (0 == value.length()) { return false; } |
| 39 | return true; |
| 40 | } |
| 41 | |
| 42 | void init(int argc, char** argv) { |
| 43 | gflags::ParseCommandLineFlags(&argc, &argv, true); |
nothing calls this directly
no outgoing calls
no test coverage detected