| 34 | }; |
| 35 | |
| 36 | struct UserTypeStr { |
| 37 | uint8_t code; |
| 38 | Standalone<StringRef> str; |
| 39 | UserTypeStr(uint8_t code, StringRef str) : code(code), str(str) {} |
| 40 | |
| 41 | bool operator==(const UserTypeStr& other) const { return (code == other.code && str == other.str); } |
| 42 | }; |
| 43 | |
| 44 | Tuple() {} |
| 45 |
no outgoing calls
no test coverage detected