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 @@ -2220,7 +2220,6 @@ namespace Sass {
2220
2220
if (List_Ptr_Const r = Cast<List>(&rhs)) {
2221
2221
if (length () != r->length ()) return false ;
2222
2222
if (separator () != r->separator ()) return false ;
2223
- if (is_bracketed () != r->is_bracketed ()) return false ;
2224
2223
for (size_t i = 0 , L = length (); i < L; ++i) {
2225
2224
Expression_Obj rv = r->at (i);
2226
2225
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