xo-interpreter2 stack: use xo-numeric/ to support op*

This commit is contained in:
Roland Conybeare 2026-02-18 22:00:30 -08:00
commit 43f120dd10
2 changed files with 7 additions and 1 deletions

View file

@ -14,7 +14,9 @@ namespace xo {
**/
class NumericPrimitives {
public:
/** poly divide **/
/** polymorphic (in both arguments) multiply **/
static DPrimitive_gco_2_gco_gco s_mul_gco_gco_pm;
/** polymorphic (in both arguments) divide **/
static DPrimitive_gco_2_gco_gco s_div_gco_gco_pm;
};
}