| 134 | } |
| 135 | |
| 136 | CFRef<CFStringRef> toCFString(std::string_view value) { |
| 137 | return CFRef<CFStringRef>(toCFStringInner(value)); |
| 138 | } |
| 139 | |
| 140 | CFRef<CFStringRef> toCFString(const char* value) { |
| 141 | return CFRef<CFStringRef>(toCFStringInner(value)); |
nothing calls this directly
no test coverage detected