]> git.llucax.com Git - software/eventxx.git/blobdiff - eventxx
Change version number.
[software/eventxx.git] / eventxx
diff --git a/eventxx b/eventxx
index ad2380671b6039fd7c0d859d3c62a3469a0434b4..dff4ea374cc9ffcdcc9c91868983113e9351ce1b 100644 (file)
--- a/eventxx
+++ b/eventxx
  *
  * @author Leandro Lucarella <llucax+eventxx@gmail.com>
  *
- * @version 0.2
+ * @version 0.4
  *
  * @par License
  * This program is under the BOLA license (see
@@ -416,7 +416,7 @@ enum type
 
 type operator| (const type& t1, const type& t2)
 {
-       int r = t1 | t2;
+       int r = static_cast< int >(t1) | static_cast< int >(t2);
        return *reinterpret_cast< type* >(&r);
 }