| 185 | }; |
| 186 | |
| 187 | void Directory::AssignEntry(const std::string& s, std::unique_ptr<Entry> entry) { |
| 188 | DCHECK(!s.empty()); |
| 189 | entries[s] = std::move(entry); |
| 190 | } |
| 191 | |
| 192 | //////////////////////////////////////////////////////////////////////////// |
| 193 | // Streams |
no test coverage detected