| 112 | } |
| 113 | |
| 114 | PendingJoin |
| 115 | PendingJoin::Inner::create(CipherSuite suite, |
| 116 | SignaturePrivateKey sig_priv, |
| 117 | Credential cred) |
| 118 | { |
| 119 | auto inner = |
| 120 | std::make_unique<Inner>(suite, std::move(sig_priv), std::move(cred)); |
| 121 | return { inner.release() }; |
| 122 | } |
| 123 | |
| 124 | PendingJoin::PendingJoin(PendingJoin&& other) noexcept = default; |
| 125 |
nothing calls this directly
no outgoing calls
no test coverage detected