| 189 | } |
| 190 | |
| 191 | size_t InternedString::numUniqueStrings() |
| 192 | { |
| 193 | Detail::Mutex::scoped_lock lock( *Detail::mutex(), false ); // read-only lock |
| 194 | Detail::HashSet *hashSet = Detail::hashSet(); |
| 195 | return hashSet->size(); |
| 196 | } |
| 197 | |
| 198 | static InternedString g_emptyString(""); |
| 199 |