diff options
| author | Jabier Arraiza Cenoz <jabier.arraiza@marker.es> | 2015-07-04 20:58:07 +0000 |
|---|---|---|
| committer | Jabiertxof <jtx@jtx.marker.es> | 2015-07-04 20:58:07 +0000 |
| commit | aac50b61c17409d48726e226f9530b894b3ad94e (patch) | |
| tree | 876890edd5245cd966ff23aeba58b89cfa21132e /src/2geom/sbasis-math.cpp | |
| parent | update to trunk (diff) | |
| parent | Translation. Danish translation update. (diff) | |
| download | inkscape-aac50b61c17409d48726e226f9530b894b3ad94e.tar.gz inkscape-aac50b61c17409d48726e226f9530b894b3ad94e.zip | |
update to trunk
(bzr r13645.1.99)
Diffstat (limited to 'src/2geom/sbasis-math.cpp')
| -rw-r--r-- | src/2geom/sbasis-math.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/2geom/sbasis-math.cpp b/src/2geom/sbasis-math.cpp index 97cdf45ce..896eb18a7 100644 --- a/src/2geom/sbasis-math.cpp +++ b/src/2geom/sbasis-math.cpp @@ -297,11 +297,11 @@ Piecewise<SBasis> reciprocalOnDomain(Interval range, double tol){ if (a<=tol){ reciprocal_fn.push_cut(0); int i0=(int) floor(std::log(tol)/std::log(R)); - a=pow(R,i0); + a = std::pow(R,i0); reciprocal_fn.push(Linear(1/a),a); }else{ int i0=(int) floor(std::log(a)/std::log(R)); - a=pow(R,i0); + a = std::pow(R,i0); reciprocal_fn.cuts.push_back(a); } |
