From a142a0044c75984848735fbfdc24e6dfb88d01cc Mon Sep 17 00:00:00 2001 From: Roland Conybeare Date: Sat, 14 Sep 2024 14:27:22 -0500 Subject: [PATCH] xo-pydistribution: bugfix: xo::ref::rp -> xo::rp --- src/pydistribution/CMakeLists.txt | 2 ++ src/pydistribution/pydistribution.cpp | 1 - 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/pydistribution/CMakeLists.txt b/src/pydistribution/CMakeLists.txt index 356ba92e..389ae251 100644 --- a/src/pydistribution/CMakeLists.txt +++ b/src/pydistribution/CMakeLists.txt @@ -3,6 +3,8 @@ set(SELF_LIB xo_pydistribution) set(SELF_SRCS pydistribution.cpp) +# ---------------------------------------------------------------- + xo_pybind11_library(${SELF_LIB} ${PROJECT_NAME}Targets ${SELF_SRCS}) xo_pybind11_dependency(${SELF_LIB} xo_distribution) xo_pybind11_dependency(${SELF_LIB} xo_pyutil) diff --git a/src/pydistribution/pydistribution.cpp b/src/pydistribution/pydistribution.cpp index 8104ccaf..58793950 100644 --- a/src/pydistribution/pydistribution.cpp +++ b/src/pydistribution/pydistribution.cpp @@ -12,7 +12,6 @@ namespace xo { using xo::distribution::Normal; using xo::distribution::Distribution; using xo::distribution::ExplicitDist; - using xo::ref::rp; namespace sim { namespace py = pybind11;