eolian-cxx: Reinterpret cast instead.

This commit is contained in:
Savio Sena 2014-09-30 18:53:23 -03:00
parent d1207854f4
commit ced2163b29
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ to_c(bool x)
inline Eina_Bool*
to_c(bool* x)
{
return static_cast<Eina_Bool*>(x);
return reinterpret_cast<Eina_Bool*>(x);
}
template <typename T>