diff options
author | Ben Noordhuis <info@bnoordhuis.nl> | 2014-10-22 04:53:26 +0200 |
---|---|---|
committer | Ben Noordhuis <info@bnoordhuis.nl> | 2014-10-23 22:49:59 +0200 |
commit | 5ab87dba738d31d4d84eea95346d3ba16b96c7c2 (patch) | |
tree | aab7005ece24ceeece87fdb9f882065990bd4993 /src/node_crypto_clienthello.h | |
parent | c038dcc360cb5e72c5891d1ef59640f5c3fa76b8 (diff) | |
download | node-new-5ab87dba738d31d4d84eea95346d3ba16b96c7c2.tar.gz |
src: mark empty destructors as default
Mark empty destructors as having a default no-op implementation.
Remove a few unused constructors and destructors while we are here.
Diffstat (limited to 'src/node_crypto_clienthello.h')
-rw-r--r-- | src/node_crypto_clienthello.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/node_crypto_clienthello.h b/src/node_crypto_clienthello.h index 33048c2a60..bbd46e5a31 100644 --- a/src/node_crypto_clienthello.h +++ b/src/node_crypto_clienthello.h @@ -47,9 +47,6 @@ class ClientHelloParser { class ClientHello { public: - ClientHello() { - } - inline uint8_t session_size() const { return session_size_; } inline const uint8_t* session_id() const { return session_id_; } inline bool has_ticket() const { return has_ticket_; } |