We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2be979c + 0c35d49 commit 1d0b207Copy full SHA for 1d0b207
src/eval.cpp
@@ -31,7 +31,7 @@ namespace Sass {
31
inline double sub(double x, double y) { return x - y; }
32
inline double mul(double x, double y) { return x * y; }
33
inline double div(double x, double y) { return x / y; } // x/0 checked by caller
34
- inline double mod(double x, double y) { return abs(fmod(x, y)); } // x/0 checked by caller
+ inline double mod(double x, double y) { return std::abs(std::fmod(x, y)); } // x/0 checked by caller
35
typedef double (*bop)(double, double);
36
bop ops[Sass_OP::NUM_OPS] = {
37
0, 0, // and, or
0 commit comments