namespace google
| 50 | } // namespace protobuf |
| 51 | } // namespace google |
| 52 | string strip_proto(const string& filename) { |
| 53 | if (HasSuffixString(filename, ".protolevel")) { |
| 54 | return StripSuffixString(filename, ".protolevel"); |
| 55 | } else { |
| 56 | return StripSuffixString(filename, ".proto"); |
| 57 | } |
| 58 | } |
| 59 | void string_format(std::string& source) { // NOLINT |
| 60 | size_t len = source.length(); |
| 61 | std::string sep = "_"; |
no test coverage detected