From 4738ff66b428b3f585ff9a862e208da90a8fdf36 Mon Sep 17 00:00:00 2001 From: Roland Conybeare Date: Mon, 5 Aug 2024 15:12:15 -0400 Subject: [PATCH] xo-expression: straggler: ns fix in Primitive::make --- include/xo/expression/Primitive.hpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/xo/expression/Primitive.hpp b/include/xo/expression/Primitive.hpp index 49246d8b..653a3a83 100644 --- a/include/xo/expression/Primitive.hpp +++ b/include/xo/expression/Primitive.hpp @@ -37,10 +37,10 @@ namespace xo { using TypeDescr = xo::reflect::TypeDescr; public: - static ref::rp make(const std::string & name, - FunctionPointer fnptr, - bool explicit_symbol_def, - llvmintrinsic intrinsic) { + static rp make(const std::string & name, + FunctionPointer fnptr, + bool explicit_symbol_def, + llvmintrinsic intrinsic) { TypeDescr fn_type = Reflect::require(); return new Primitive(fn_type, name, fnptr, explicit_symbol_def, intrinsic);