summaryrefslogtreecommitdiffstats
path: root/src/map/mio/exp.h
diff options
context:
space:
mode:
authorAlan Mishchenko <alanmi@berkeley.edu>2012-02-17 00:06:39 -0800
committerAlan Mishchenko <alanmi@berkeley.edu>2012-02-17 00:06:39 -0800
commit2d316b86e29704c28487533518bf67f2672fcd8f (patch)
treeaa7531d477e2e287a60a0fd41da9b2284e3eceba /src/map/mio/exp.h
parent97856d021a1282cf3fb9a86701fff3ec403fe912 (diff)
downloadabc-2d316b86e29704c28487533518bf67f2672fcd8f.tar.gz
abc-2d316b86e29704c28487533518bf67f2672fcd8f.tar.bz2
abc-2d316b86e29704c28487533518bf67f2672fcd8f.zip
Silencing some of the gcc warnings.
Diffstat (limited to 'src/map/mio/exp.h')
-rw-r--r--src/map/mio/exp.h2
1 files changed, 1 insertions, 1 deletions
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) );