| 95 | namespace { |
| 96 | |
| 97 | string JoinStringField(const protobuf::RepeatedPtrField<string>& f) { |
| 98 | string ret; |
| 99 | for (int i = 0; i < f.size(); ++i) { |
| 100 | if (i > 0) strings::StrAppend(&ret, ", "); |
| 101 | strings::StrAppend(&ret, f.Get(i)); |
| 102 | } |
| 103 | return ret; |
| 104 | } |
| 105 | |
| 106 | } // namespace |
| 107 |
no test coverage detected