| 81 | |
| 82 | template<class T> |
| 83 | bool |
| 84 | StringTableT<T>::hasStringIndex(const StringTableIndex &s) const |
| 85 | { |
| 86 | typedef typename Table::template nth_index<0>::type IndexSet; |
| 87 | const IndexSet &indices = _table.template get<0>(); |
| 88 | return indices.find(s) != indices.end(); |
| 89 | } |
| 90 | |
| 91 | namespace { |
| 92 | template class StringTableDetailT<std::string>; |
nothing calls this directly
no outgoing calls
no test coverage detected