Kaydet (Commit) 0fc0c5d4 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Clean up C-style casts from pointers to void

Change-Id: I1d37ac19f2738a7bac43fc8b44f782ff2363123a
üst f462f7b8
......@@ -25,11 +25,11 @@
IdlDll * GetIdlApp()
{
if( !(*(IdlDll**)GetAppData(SHL_IDL)) )
if( !(*reinterpret_cast<IdlDll**>(GetAppData(SHL_IDL))) )
{
(*(IdlDll**)GetAppData(SHL_IDL)) = new IdlDll();
(*reinterpret_cast<IdlDll**>(GetAppData(SHL_IDL))) = new IdlDll();
}
return (*(IdlDll**)GetAppData(SHL_IDL));
return (*reinterpret_cast<IdlDll**>(GetAppData(SHL_IDL)));
}
IdlDll::IdlDll()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment