]> git.llucax.com Git - software/eventxx.git/blobdiff - event
Minor documentation fixes.
[software/eventxx.git] / event
diff --git a/event b/event
index d2ec386484d3ab130891390c1f84b63404814129..0db8728b0e49308c20bed3d539baa6a67d46a9f6 100644 (file)
--- a/event
+++ b/event
@@ -67,7 +67,7 @@ namespace internal
 /**
  * Base class for all libevent exceptions.
  */
-struct exception: std::exception
+struct exception: public std::exception
 {
 };
 
@@ -81,7 +81,7 @@ struct exception: 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
 {
 
        /**
@@ -108,7 +108,7 @@ struct invalid_event: std::invalid_argument, 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
 {
 
        /**