| 84 | #ifdef WITH_CRIMSON |
| 85 | namespace crimson::common { |
| 86 | CephContext::CephContext() |
| 87 | : _conf{crimson::common::local_conf()}, |
| 88 | _perf_counters_collection{crimson::common::local_perf_coll()}, |
| 89 | _crypto_random{std::make_unique<CryptoRandom>()} |
| 90 | {} |
| 91 | |
| 92 | // define the dtor in .cc as CryptoRandom is an incomplete type in the header |
| 93 | CephContext::~CephContext() |
nothing calls this directly
no test coverage detected