From 2d316b86e29704c28487533518bf67f2672fcd8f Mon Sep 17 00:00:00 2001 From: Alan Mishchenko Date: Fri, 17 Feb 2012 00:06:39 -0800 Subject: Silencing some of the gcc warnings. --- src/map/mio/exp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/map/mio/exp.h') diff --git a/src/map/mio/exp.h b/src/map/mio/exp.h index 40dff2e8..a76f33cb 100644 --- a/src/map/mio/exp.h +++ b/src/map/mio/exp.h @@ -153,7 +153,7 @@ static inline Vec_Int_t * Exp_Or( int * pMan, int nVars, Vec_Int_t * p0, Vec_Int } static inline Vec_Int_t * Exp_Xor( int * pMan, int nVars, Vec_Int_t * p0, Vec_Int_t * p1 ) { - int i, v = 0, Len0 = Vec_IntSize(p0), Len1 = Vec_IntSize(p1); + int i, Len0 = Vec_IntSize(p0), Len1 = Vec_IntSize(p1); Vec_Int_t * r = Vec_IntAlloc( Len0 + Len1 + 5 ); assert( (Len0 & 1) && (Len1 & 1) ); Vec_IntPush( r, 2 * (nVars + Len0/2 + Len1/2 + 2) ); -- cgit v1.2.3