diff options
author | Jack Lloyd <[email protected]> | 2017-10-06 21:07:25 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2017-10-06 21:07:25 -0400 |
commit | aff93b716eda9d10be9f02e4b436b672510ab179 (patch) | |
tree | 12f992aac7cc20519cb3f643f793f1bb133d8ab0 /src/lib/utils/http_util | |
parent | 1c539719f170df9c8acc6977da3c331c7e78cbf2 (diff) |
Address various GCC warnings
Things like -Wconversion and -Wuseless-cast that are noisy and
not on by default.
Diffstat (limited to 'src/lib/utils/http_util')
-rw-r--r-- | src/lib/utils/http_util/socket.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/utils/http_util/socket.h b/src/lib/utils/http_util/socket.h index 78c29f147..4961738ae 100644 --- a/src/lib/utils/http_util/socket.h +++ b/src/lib/utils/http_util/socket.h @@ -33,7 +33,7 @@ class BOTAN_TEST_API Socket /** * The socket will be closed upon destruction */ - virtual ~Socket() {}; + virtual ~Socket() = default; /** * Write to the socket. Blocks until all bytes sent. |