From 4048d32c569f488cb0727fbfeb5fc83796a7fc5c Mon Sep 17 00:00:00 2001 From: Juan Jose Garcia Ripoll Date: Sat, 2 Aug 2008 19:57:34 +0200 Subject: [PATCH] CONJUGATE did not support long double types --- src/c/num_arith.d | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/c/num_arith.d b/src/c/num_arith.d index 25965fcdd..97ef7f212 100644 --- a/src/c/num_arith.d +++ b/src/c/num_arith.d @@ -802,6 +802,9 @@ cl_conjugate(cl_object c) case t_ratio: case t_singlefloat: case t_doublefloat: +#ifdef ECL_LONG_FLOAT + case t_longfloat: +#endif break; default: FEtype_error_number(c);