0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-07-05 01:58:35 +02:00

ircd::client: Disallow copying client struct.

This commit is contained in:
Jason Volk 2016-08-22 23:04:09 -07:00
parent b7cb55a58a
commit f081f4b7cb

View file

@ -219,6 +219,8 @@ struct client
char *certfp; /* client certificate fingerprint */
client();
client(const client &) = delete;
client &operator=(const client &) = delete;
~client() noexcept;
};