| 115 | } |
| 116 | |
| 117 | inline bool __libcpp_refstring::__uses_refcount() const { |
| 118 | #if defined(_LIBCPP_CHECK_FOR_GCC_EMPTY_STRING_STORAGE) |
| 119 | return __imp_ != get_gcc_empty_string_storage(); |
| 120 | #else |
| 121 | return true; |
| 122 | #endif |
| 123 | } |
| 124 | |
| 125 | _LIBCPP_END_NAMESPACE_STD |
| 126 |
nothing calls this directly
no test coverage detected