Skip to content

Commit

Permalink
fix: missing ;
Browse files Browse the repository at this point in the history
courtesy of "Grayson, Daniel R." <dan@math.uiuc.edu>
  • Loading branch information
mmklee committed Feb 21, 2012
1 parent 0ad61a2 commit 62d1d69
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion factory/cf_cyclo.cc
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@

#include <config.h>

#include "assert.h"

#include "canonicalform.h"
#include "cf_primes.h"
#include "cf_util.h"
Expand Down Expand Up @@ -80,7 +82,7 @@ int* integerFactorizer (const long integer, int& length, bool& fail)
}
if (j >= 31397)
fail= true;
ASSERT (j < 31397, "integer factorizer ran out of primes") //sic
ASSERT (j < 31397, "integer factorizer ran out of primes"); //sic
return result;
}

Expand Down

0 comments on commit 62d1d69

Please sign in to comment.