Skip to content

Commit 004b138

Browse files
authored
Merge pull request #1316 from andrjohns/catmull_rom-doc
Fix return type in catmull_rom doc
2 parents 4323902 + 5561669 commit 004b138

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/interpolators/catmull_rom.qbk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ namespace boost{ namespace math{
2424

2525
catmull_rom(std::initializer_list<Point> l, bool closed = false, typename Point::value_type alpha = (typename Point::value_type) 1/ (typename Point::value_type) 2);
2626

27-
Real operator()(Real s) const;
27+
Point operator()(Real s) const;
2828

2929
Real max_parameter() const;
3030

0 commit comments

Comments
 (0)