disallow copying and moving
| 66 | |
| 67 | // disallow copying and moving |
| 68 | CryptSettings(CryptSettings const&) = delete; |
| 69 | void operator=(CryptSettings const&) = delete; |
| 70 | |
| 71 | CryptSettings(CryptSettings const&&) = delete; |
nothing calls this directly
no outgoing calls
no test coverage detected