From 6130e39b18b5f53902e4eab14f6d5cdde5219563 Mon Sep 17 00:00:00 2001 From: Alan Mishchenko Date: Mon, 1 Nov 2010 01:35:04 -0700 Subject: initial commit of public abc --- src/aig/cnf/cnfPost.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'src/aig/cnf/cnfPost.c') diff --git a/src/aig/cnf/cnfPost.c b/src/aig/cnf/cnfPost.c index 988275b2..f7491889 100644 --- a/src/aig/cnf/cnfPost.c +++ b/src/aig/cnf/cnfPost.c @@ -20,6 +20,9 @@ #include "cnf.h" +ABC_NAMESPACE_IMPL_START + + //////////////////////////////////////////////////////////////////////// /// DECLARATIONS /// //////////////////////////////////////////////////////////////////////// @@ -143,7 +146,7 @@ void Cnf_ManFreeCuts( Cnf_Man_t * p ) Aig_ManForEachObj( p->pManAig, pObj, i ) if ( pObj->pData ) { - Cnf_CutFree( pObj->pData ); + Cnf_CutFree( (Cnf_Cut_t *)pObj->pData ); pObj->pData = NULL; } } @@ -231,3 +234,5 @@ void Cnf_ManPostprocess( Cnf_Man_t * p ) //////////////////////////////////////////////////////////////////////// +ABC_NAMESPACE_IMPL_END + -- cgit v1.2.3