[SCM] an open source computer algebra system branch, cleanedupstream, updated. 6125e540ca6d66c307958938a9d53b245507c323
Bernhard R. Link
brlink at debian.org
Tue Apr 24 15:53:21 UTC 2012
The following commit has been merged in the cleanedupstream branch:
commit b7e837bf995af70463a3257cbfd719c530cd2ec3
Author: Martin Lee <martinlee84 at web.de>
Date: Tue Feb 21 15:32:14 2012 +0100
fix: missing ;
courtesy of "Grayson, Daniel R." <dan at math.uiuc.edu>
diff --git a/factory/cf_cyclo.cc b/factory/cf_cyclo.cc
index 8e548b9..b9b6b51 100644
--- a/factory/cf_cyclo.cc
+++ b/factory/cf_cyclo.cc
@@ -15,6 +15,8 @@
#include <config.h>
+#include "assert.h"
+
#include "canonicalform.h"
#include "cf_primes.h"
#include "cf_util.h"
@@ -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;
}
--
an open source computer algebra system
More information about the debian-science-commits
mailing list