From c26e4943c29d1f801c020c36fb5cd0353752ec5e Mon Sep 17 00:00:00 2001 From: Ulf Wetzker Date: Thu, 2 Aug 2018 18:17:07 +0200 Subject: [PATCH] Added base class access specifier for socket_close_error (#306) --- include/tins/exceptions.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/tins/exceptions.h b/include/tins/exceptions.h index 7285a5b..844439b 100644 --- a/include/tins/exceptions.h +++ b/include/tins/exceptions.h @@ -128,7 +128,7 @@ public: /** * \brief Exception thrown when PacketSender fails to close a socket. */ -class socket_close_error : exception_base { +class socket_close_error : public exception_base { public: socket_close_error(const std::string& msg) : exception_base(msg) { }