Skip to content

Commit

Permalink
Merge pull request sass#1479 from xzyfer/fix/missing-namespace
Browse files Browse the repository at this point in the history
Add missing std prefix causing compilation warnings
  • Loading branch information
xzyfer committed Aug 24, 2015
2 parents 2be979c + 0c35d49 commit 1d0b207
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/eval.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ namespace Sass {
inline double sub(double x, double y) { return x - y; }
inline double mul(double x, double y) { return x * y; }
inline double div(double x, double y) { return x / y; } // x/0 checked by caller
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
typedef double (*bop)(double, double);
bop ops[Sass_OP::NUM_OPS] = {
0, 0, // and, or
Expand Down

0 comments on commit 1d0b207

Please sign in to comment.