File tree Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -2225,6 +2225,7 @@ namespace Sass {
2225
2225
if (List_Ptr_Const r = dynamic_cast <List_Ptr_Const>(&rhs)) {
2226
2226
if (length () != r->length ()) return false ;
2227
2227
if (separator () != r->separator ()) return false ;
2228
+ if (is_bracketed () != r->is_bracketed ()) return false ;
2228
2229
for (size_t i = 0 , L = length (); i < L; ++i) {
2229
2230
Expression_Obj rv = r->at (i);
2230
2231
Expression_Obj lv = this ->at (i);
Original file line number Diff line number Diff line change @@ -1082,6 +1082,7 @@ namespace Sass {
1082
1082
{
1083
1083
if (hash_ == 0 ) {
1084
1084
hash_ = std::hash<std::string>()(sep_string ());
1085
+ hash_combine (hash_, std::hash<bool >()(is_bracketed ()));
1085
1086
for (size_t i = 0 , L = length (); i < L; ++i)
1086
1087
hash_combine (hash_, (elements ()[i])->hash ());
1087
1088
}
You can’t perform that action at this time.
0 commit comments