| 52 | }; |
| 53 | |
| 54 | FileLoader::FileLoader() : impl_(new FileLoaderImpl()) { |
| 55 | assert(impl_); |
| 56 | pthread_rwlock_init(&impl_->rwlock, NULL); |
| 57 | } |
| 58 | |
| 59 | FileLoader::FileLoader(const string &file) : impl_(new FileLoaderImpl()) { |
| 60 | assert(impl_); |
nothing calls this directly
no outgoing calls
no test coverage detected