| 1025 | } |
| 1026 | |
| 1027 | static bool isIntegral(std::string_view type) { |
| 1028 | static const std::unordered_set<std::string_view> types = { |
| 1029 | "bool", "byte", "uint8", "int8", "uint16", "int16", |
| 1030 | "uint32", "int32", "uint64", "int64", "size_t", |
| 1031 | }; |
| 1032 | return types.contains(type); |
| 1033 | } |
| 1034 | |
| 1035 | static std::string lengthExpr(const Field& field, |
| 1036 | const std::vector<Field>& sideFields, |
nothing calls this directly
no outgoing calls
no test coverage detected