| 1021 | } |
| 1022 | |
| 1023 | static bool containsName(const std::vector<std::string>& names, std::string_view name) { |
| 1024 | return std::find(names.begin(), names.end(), name) != names.end(); |
| 1025 | } |
| 1026 | |
| 1027 | static bool isIntegral(std::string_view type) { |
| 1028 | static const std::unordered_set<std::string_view> types = { |
nothing calls this directly
no outgoing calls
no test coverage detected