Skip to content

Commit

Permalink
Merge pull request #384 from lsst/tickets/DM-45486
Browse files Browse the repository at this point in the history
DM-45486: Replace utils with cpputils in C++
  • Loading branch information
timj authored Jul 30, 2024
2 parents 8543c18 + 3505673 commit a44b09e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions python/lsst/meas/algorithms/imagePsf.cc
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@
#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"

namespace py = pybind11;
using namespace pybind11::literals;

using lsst::utils::python::PySharedPtr;
using lsst::cpputils::python::PySharedPtr;

namespace lsst {
namespace meas {
Expand Down
4 changes: 2 additions & 2 deletions python/lsst/meas/algorithms/warpedPsf.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit a44b09e

Please sign in to comment.