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,