diff options
| author | Alan Mishchenko <alanmi@berkeley.edu> | 2013-05-04 20:28:05 -0700 | 
|---|---|---|
| committer | Alan Mishchenko <alanmi@berkeley.edu> | 2013-05-04 20:28:05 -0700 | 
| commit | 4aff2d134d0fc5a6e417a49a55a4819823b32a55 (patch) | |
| tree | c2ae637be884e2ff0012146045a594b6a3b6ece9 | |
| parent | 13ee4998c39e891b94336491f225c378ec621db1 (diff) | |
| download | abc-4aff2d134d0fc5a6e417a49a55a4819823b32a55.tar.gz abc-4aff2d134d0fc5a6e417a49a55a4819823b32a55.tar.bz2 abc-4aff2d134d0fc5a6e417a49a55a4819823b32a55.zip | |
C++ compiler errors.
| -rw-r--r-- | src/base/abci/abcFx.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/src/base/abci/abcFx.c b/src/base/abci/abcFx.c index 8f1c724a..69cfb352 100644 --- a/src/base/abci/abcFx.c +++ b/src/base/abci/abcFx.c @@ -65,7 +65,7 @@ void Abc_NtkOrderFanins( Abc_Ntk_t * pNtk )              Vec_IntPush( vOrder, v );          pOrder = Vec_IntArray(vOrder);          Vec_IntSelectSortCost( pOrder, nVars, &pNode->vFanins ); -        pSopNew = pCubeNew = Abc_SopStart( pNtk->pManFunc, Abc_SopGetCubeNum(pSop), nVars ); +        pSopNew = pCubeNew = Abc_SopStart( (Mem_Flex_t *)pNtk->pManFunc, Abc_SopGetCubeNum(pSop), nVars );          Abc_SopForEachCube( pSop, nVars, pCube )          {              for ( v = 0; v < nVars; v++ ) @@ -205,7 +205,7 @@ void Abc_NtkFxInsert( Abc_Ntk_t * pNtk, Vec_Wec_t * vCubes )              }          }          // create SOP -        pSop = pCube = Abc_SopStart( pNtk->pManFunc, Vec_IntEntry(vCount, i), Abc_ObjFaninNum(pNode) ); +        pSop = pCube = Abc_SopStart( (Mem_Flex_t *)pNtk->pManFunc, Vec_IntEntry(vCount, i), Abc_ObjFaninNum(pNode) );          for ( k = 0; k < Vec_IntEntry(vCount, i); k++ )          {              vCube = Vec_WecEntry( vCubes, Vec_IntEntry(vFirst, i) + k ); | 
