File tree Expand file tree Collapse file tree 2 files changed +0
-2
lines changed Expand file tree Collapse file tree 2 files changed +0
-2
lines changed Original file line number Diff line number Diff line change @@ -2258,7 +2258,6 @@ namespace Sass {
2258
2258
if (List_Ptr_Const r = Cast<List>(&rhs)) {
2259
2259
if (length () != r->length ()) return false ;
2260
2260
if (separator () != r->separator ()) return false ;
2261
- if (is_bracketed () != r->is_bracketed ()) return false ;
2262
2261
for (size_t i = 0 , L = length (); i < L; ++i) {
2263
2262
Expression_Obj rv = r->at (i);
2264
2263
Expression_Obj lv = this ->at (i);
Original file line number Diff line number Diff line change @@ -1096,7 +1096,6 @@ namespace Sass {
1096
1096
{
1097
1097
if (hash_ == 0 ) {
1098
1098
hash_ = std::hash<std::string>()(sep_string ());
1099
- hash_combine (hash_, std::hash<bool >()(is_bracketed ()));
1100
1099
for (size_t i = 0 , L = length (); i < L; ++i)
1101
1100
hash_combine (hash_, (elements ()[i])->hash ());
1102
1101
}
You can’t perform that action at this time.
0 commit comments