/**
* Base class for all libevent exceptions.
*/
-struct exception: std::exception
+struct exception: public std::exception
{
};
*
* If you hit this exception, you probably got a programming error.
*/
-struct invalid_event: std::invalid_argument, exception
+struct invalid_event: public std::invalid_argument, public exception
{
/**
*
* @see dispatcher::dispatcher(int) to allocate more priority queues.
*/
-struct invalid_priority: std::invalid_argument, exception
+struct invalid_priority: public std::invalid_argument, public exception
{
/**