xo-expression: pref xo::bp to xo::ref::brw

This commit is contained in:
Roland Conybeare 2025-07-05 13:53:05 -05:00
commit a4b2299537
20 changed files with 66 additions and 60 deletions

View file

@ -16,8 +16,8 @@ namespace xo {
: Expression(extype, fn_type) {}
/** downcast from Expression **/
static ref::brw<FunctionInterface> from(ref::brw<Expression> x) {
return ref::brw<FunctionInterface>::from(x);
static bp<FunctionInterface> from(bp<Expression> x) {
return bp<FunctionInterface>::from(x);
}
virtual const std::string & name() const = 0;
@ -30,5 +30,4 @@ namespace xo {
} /*namespace ast*/
} /*namespace xo*/
/** end FunctionInterface.hpp **/