Commit 628b1a96 by Alan Mishchenko

C++ portability changes.

parent 56d3d7cd
...@@ -112,7 +112,7 @@ static inline Abc_TtStore_t * Abc_TruthStoreAlloc( int nVars, int nFuncs ) ...@@ -112,7 +112,7 @@ static inline Abc_TtStore_t * Abc_TruthStoreAlloc( int nVars, int nFuncs )
} }
// free memory previously allocated for storing truth tables // free memory previously allocated for storing truth tables
static inline void Abc_TruthStoreFree( Abc_TtStore_t * p ) void Abc_TruthStoreFree( Abc_TtStore_t * p )
{ {
free( p->pFuncs[0] ); free( p->pFuncs[0] );
free( p->pFuncs ); free( p->pFuncs );
......
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