Small change to fix broken C++ build.

This commit is contained in:
Alan Mishchenko 2019-04-09 12:17:18 -07:00
parent 95a5e47b6b
commit a32dd8f7ed
1 changed files with 2 additions and 1 deletions

View File

@ -996,8 +996,9 @@ void Dtt_DumpLibrary( Dtt_Man_t * p )
fflush( stdout );
}
void Dtt_EnumerateLf( int nVars, int nNodeMax, int fDelay, int fMulti, int fVerbose, int fDump )
void Dtt_EnumerateLf( int nVars, int nNodeMax, int fDelay, int fMulti, int fVerbose )
{
int fDump = 1;
abctime clk = Abc_Clock(); word nSteps = 0, nMultis = 0;
Dtt_Man_t * p = Dtt_ManAlloc( nVars, fMulti ); int n, i, j;