projects
/
software/eventxx.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
(parent:
bc01f81
)
Don't do the reinterpret_cast trick anymore for the event wrapper.
author
Leandro Lucarella
<llucarella@integratech.com.ar>
Fri, 9 Nov 2007 17:23:03 +0000 (14:23 -0300)
committer
Leandro Lucarella
<llucarella@integratech.com.ar>
Fri, 9 Nov 2007 17:23:03 +0000 (14:23 -0300)
eventxx
patch
|
blob
|
history
diff --git
a/eventxx
b/eventxx
index
e54d279
..
1740a28
100644
(file)
--- a/
eventxx
+++ b/
eventxx
@@
-320,10
+320,7
@@
struct event: basic_event
F& handler = *reinterpret_cast< F* >(h);
// Hackish, but this way the handler can get a clean
// event type
- short* pev = &ev; // Avoid some weird warning about
- // dereferencing type-punned pointer
- // will break strict-aliasing rules
- handler(fd, *reinterpret_cast< type* >(pev));
+ handler(fd, static_cast< type >(ev));
}
}; // struct event< F >