From 3505673a9b2445f80d96c69f3fb9ea842f9fdb50 Mon Sep 17 00:00:00 2001 From: Tim Jenness Date: Tue, 30 Jul 2024 10:44:36 -0700 Subject: [PATCH] Replace utils with cpputils in C++ --- python/lsst/meas/algorithms/imagePsf.cc | 4 ++-- python/lsst/meas/algorithms/warpedPsf.cc | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/python/lsst/meas/algorithms/imagePsf.cc b/python/lsst/meas/algorithms/imagePsf.cc index 7c6e71bca..fafb46777 100644 --- a/python/lsst/meas/algorithms/imagePsf.cc +++ b/python/lsst/meas/algorithms/imagePsf.cc @@ -22,7 +22,7 @@ #include "pybind11/pybind11.h" #include "lsst/cpputils/python.h" -#include "lsst/utils/python/PySharedPtr.h" +#include "lsst/cpputils/python/PySharedPtr.h" #include "lsst/afw/table/io/python.h" #include "lsst/meas/algorithms/ImagePsf.h" #include "lsst/meas/algorithms/python.h" @@ -30,7 +30,7 @@ namespace py = pybind11; using namespace pybind11::literals; -using lsst::utils::python::PySharedPtr; +using lsst::cpputils::python::PySharedPtr; namespace lsst { namespace meas { diff --git a/python/lsst/meas/algorithms/warpedPsf.cc b/python/lsst/meas/algorithms/warpedPsf.cc index 6f513ed1e..241020340 100644 --- a/python/lsst/meas/algorithms/warpedPsf.cc +++ b/python/lsst/meas/algorithms/warpedPsf.cc @@ -22,14 +22,14 @@ #include "pybind11/pybind11.h" #include "lsst/cpputils/python.h" -#include "lsst/utils/python/PySharedPtr.h" +#include "lsst/cpputils/python/PySharedPtr.h" #include "lsst/meas/algorithms/WarpedPsf.h" namespace py = pybind11; using namespace pybind11::literals; -using lsst::utils::python::PySharedPtr; +using lsst::cpputils::python::PySharedPtr; namespace lsst { namespace meas {