diff options
author | Alan Mishchenko <alanmi@berkeley.edu> | 2013-05-03 15:48:05 -0700 |
---|---|---|
committer | Alan Mishchenko <alanmi@berkeley.edu> | 2013-05-03 15:48:05 -0700 |
commit | fcd377405a67bdeb673126f637eed31b574dd75f (patch) | |
tree | e4644646b2f77174fd2457e196ca29a3ac52b71d /src/misc | |
parent | 6a49d1f4c61b9e4a9f135ea46f6c64e90aba0e6c (diff) | |
download | abc-fcd377405a67bdeb673126f637eed31b574dd75f.tar.gz abc-fcd377405a67bdeb673126f637eed31b574dd75f.tar.bz2 abc-fcd377405a67bdeb673126f637eed31b574dd75f.zip |
Compiler warnings.
Diffstat (limited to 'src/misc')
-rw-r--r-- | src/misc/vec/vecInt.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/misc/vec/vecInt.h b/src/misc/vec/vecInt.h index 67d9e914..03427a0b 100644 --- a/src/misc/vec/vecInt.h +++ b/src/misc/vec/vecInt.h @@ -1304,7 +1304,6 @@ static inline int Vec_IntTwoFindCommon( Vec_Int_t * vArr1, Vec_Int_t * vArr2, Ve int * pBeg2 = vArr2->pArray; int * pEnd1 = vArr1->pArray + vArr1->nSize; int * pEnd2 = vArr2->pArray + vArr2->nSize; - int Counter = 0; Vec_IntClear( vArr ); while ( pBeg1 < pEnd1 && pBeg2 < pEnd2 ) { |