Remove a TODO that is no longer relevant

The function signatures are equal nowadays.
This commit is contained in:
Martin Storsjö 2014-04-08 11:00:49 +03:00
parent 1342da9bc4
commit 1d167fe7d6

View File

@ -86,8 +86,7 @@ int32_t CWelsLib::CreateIface (IWelsVP** ppInterfaceVp) {
pfnDestroyVpInterface pDestroyVpInterface = NULL;
pCreateVpInterface = CreateVpInterface;
// TODO(ekr@rtfm.com): This cast corrects a signature difference... This is a potential real problem
pDestroyVpInterface = (pfnDestroyVpInterface)DestroyVpInterface;
pDestroyVpInterface = DestroyVpInterface;
m_pInterface[0] = (void*)pCreateVpInterface;
m_pInterface[1] = (void*)pDestroyVpInterface;