| 137 | |
| 138 | protected: |
| 139 | static std::shared_ptr<Field> Int(std::string name) { |
| 140 | return field(std::move(name), int32()); |
| 141 | } |
| 142 | |
| 143 | static std::shared_ptr<Field> Str(std::string name) { |
| 144 | return field(std::move(name), utf8()); |
no test coverage detected