From 7a7544fa693a7d93749cee906885bfb579d48ab6 Mon Sep 17 00:00:00 2001 From: Randall Morgan Date: Wed, 22 Feb 2012 10:59:08 +0000 Subject: [PATCH] [GB.GSL] * BUG: Commented out bad line of code that cause the component to fail to compile. git-svn-id: svn://localhost/gambas/trunk@4500 867c0c6c-44f3-4631-809d-bfa615b0a4ec --- gb.gsl/src/c_polynomial.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gb.gsl/src/c_polynomial.c b/gb.gsl/src/c_polynomial.c index 391a73d4b..d0e088979 100644 --- a/gb.gsl/src/c_polynomial.c +++ b/gb.gsl/src/c_polynomial.c @@ -210,7 +210,7 @@ BEGIN_METHOD(CPolynomial_ComplexEval, GB_OBJECT z) // TODO Figure out error when compiling gsl_poly_complex_eval() - obj = gsl_poly_complex_eval(THIS->c, THIS->len, z->number); + // obj = gsl_poly_complex_eval(THIS->c, THIS->len, z->number); GB.ReturnObject(obj);