Skip to content
This repository has been archived by the owner on Jul 24, 2024. It is now read-only.

Commit

Permalink
Fix attribute selector equality (include modifier)
Browse files Browse the repository at this point in the history
  • Loading branch information
mgreter committed Oct 4, 2019
1 parent 35b3293 commit deeebbf
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/ast_sel_cmp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -367,6 +367,7 @@ namespace Sass {
if (is_ns_eq(rhs)) {
if (name() != rhs.name()) return false;
if (matcher() != rhs.matcher()) return false;
if (modifier() != rhs.modifier()) return false;
const String* lhs_val = value();
const String* rhs_val = rhs.value();
return PtrObjEquality()(lhs_val, rhs_val);
Expand Down

0 comments on commit deeebbf

Please sign in to comment.