From 53a64c6a44270b2b6823309f99deb8a057fa3cbe Mon Sep 17 00:00:00 2001 From: Matthias Wittgen Date: Sun, 18 Aug 2024 17:40:30 -0700 Subject: [PATCH] Fix argument forwarding --- include/lsst/meas/algorithms/python.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/lsst/meas/algorithms/python.h b/include/lsst/meas/algorithms/python.h index c770da9a9..0e3e5977a 100644 --- a/include/lsst/meas/algorithms/python.h +++ b/include/lsst/meas/algorithms/python.h @@ -64,7 +64,7 @@ class ImagePsfTrampoline : public PsfTrampoline { * @param ...args Arguments to forward to the Base class constructor. */ template - ImagePsfTrampoline(Args... args) : PsfTrampoline(args...) {} + ImagePsfTrampoline(Args&&... args) : PsfTrampoline(std::forward(args)...) {} double doComputeApertureFlux( double radius, geom::Point2D const& position,