We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fc6b4f9 commit 4eb2d09Copy full SHA for 4eb2d09
1 file changed
src/libsass/src/ast.hpp
@@ -1505,7 +1505,7 @@ namespace Sass {
1505
if (!(m && name() == m->name())) return false;
1506
if (!(m && arguments()->length() == m->arguments()->length())) return false;
1507
for (size_t i =0, L = arguments()->length(); i < L; ++i)
1508
- if (!((*arguments())[i]->eq(*(*m->arguments())[i]))) return false;
+ if (!(*(*arguments())[i] == *(*m->arguments())[i])) return false;
1509
return true;
1510
}
1511
catch (std::bad_cast&)
0 commit comments