From 5950a45483ecf26931b2df1bf05925efb4d16186 Mon Sep 17 00:00:00 2001 From: Roland Conybeare Date: Sat, 28 Mar 2026 09:45:36 -0400 Subject: [PATCH] xo-numeric: restore numeric function type --- src/numeric/NumericPrimitives.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/numeric/NumericPrimitives.cpp b/src/numeric/NumericPrimitives.cpp index 0104f4cb..9697cc9b 100644 --- a/src/numeric/NumericPrimitives.cpp +++ b/src/numeric/NumericPrimitives.cpp @@ -24,14 +24,10 @@ namespace xo { // // e.g. f64 x f64 -> f64 -#ifdef NOPE auto numeric_ty = DAtomicType::make(mm, Metatype::t_numeric()); // #op+: numeric x numeric -> numeric auto pm_ty = obj (DFunctionType::_make(mm, numeric_ty, numeric_ty, numeric_ty)); -#endif - - auto pm_ty = obj(); return DPrimitive_gco_2_gco_gco::_make(mm, c_multiply_pm_name, pm_ty, &NumericDispatch::multiply);