| 37 | }; |
| 38 | |
| 39 | FileConfig::FileConfig() : impl_(new FileConfigImpl()) { |
| 40 | assert(impl_); |
| 41 | pthread_rwlock_init(&impl_->rwlock, NULL); |
| 42 | } |
| 43 | |
| 44 | FileConfig::FileConfig(const std::string &file) : impl_(new FileConfigImpl()) { |
| 45 | assert(impl_); |
nothing calls this directly
no outgoing calls
no test coverage detected