mirror of
https://github.com/boostorg/geometry.git
synced 2026-01-31 08:12:13 +00:00
[formulas][util] Add missing import and function return type
This commit is contained in:
@@ -11,6 +11,7 @@
|
||||
|
||||
|
||||
#include <boost/math/constants/constants.hpp>
|
||||
#include <boost/math/special_functions/hypot.hpp>
|
||||
|
||||
#include <boost/geometry/util/math.hpp>
|
||||
#include <boost/geometry/util/series_expansion.hpp>
|
||||
|
||||
@@ -538,7 +538,7 @@ namespace boost { namespace geometry { namespace series_expansion {
|
||||
s/eps(CT(2))/eps2/g;'
|
||||
*/
|
||||
template <typename CT, std::size_t SeriesOrder>
|
||||
static inline evaluate_coeffs_C1p(CT eps, CT c[])
|
||||
static inline void evaluate_coeffs_C1p(CT eps, CT c[])
|
||||
{
|
||||
CT const eps2 = math::sqr(eps);
|
||||
CT d = eps;
|
||||
|
||||
Reference in New Issue
Block a user