Skip to content

Commit

Permalink
Merge pull request #385 from lsst/tickets/DM-45834
Browse files Browse the repository at this point in the history
DM-45834: Fix C++17 deprecations and C++20 compilation
  • Loading branch information
mwittgen authored Aug 23, 2024
2 parents a44b09e + 53a64c6 commit ae74b0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/lsst/meas/algorithms/python.h
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ class ImagePsfTrampoline : public PsfTrampoline<Base> {
* @param ...args Arguments to forward to the Base class constructor.
*/
template<typename... Args>
ImagePsfTrampoline<Base>(Args... args) : PsfTrampoline<Base>(args...) {}
ImagePsfTrampoline(Args&&... args) : PsfTrampoline<Base>(std::forward<Args>(args)...) {}

double doComputeApertureFlux(
double radius, geom::Point2D const& position,
Expand Down

0 comments on commit ae74b0b

Please sign in to comment.