Skip to content

Commit

Permalink
Get rid of unused variable compiler warning
Browse files Browse the repository at this point in the history
  • Loading branch information
cjdrake committed Jan 17, 2015
1 parent da74488 commit ef6ceb8
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions pyeda/boolalg/picosatmodule.c
Original file line number Diff line number Diff line change
Expand Up @@ -133,12 +133,9 @@ _add_clauses(PicoSAT *picosat, PyObject *clauses)
static int
_add_assumptions(PicoSAT *picosat, PyObject *assumptions)
{
int nvars;
PyObject *pylits, *pylit;
int lit;

nvars = picosat_variables(picosat);

pylits = PyObject_GetIter(assumptions);
if (pylits == NULL)
goto error;
Expand Down

0 comments on commit ef6ceb8

Please sign in to comment.