Skip to content

Commit 51ea6ed

Browse files
committed
Revert "Merge pull request #2281 from xzyfer/list-equality"
This reverts commit 7abaa75, reversing changes made to 6537833.
1 parent 5cfdd12 commit 51ea6ed

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

src/ast.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2220,7 +2220,6 @@ namespace Sass {
22202220
if (List_Ptr_Const r = Cast<List>(&rhs)) {
22212221
if (length() != r->length()) return false;
22222222
if (separator() != r->separator()) return false;
2223-
if (is_bracketed() != r->is_bracketed()) return false;
22242223
for (size_t i = 0, L = length(); i < L; ++i) {
22252224
Expression_Obj rv = r->at(i);
22262225
Expression_Obj lv = this->at(i);

src/ast.hpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1096,7 +1096,6 @@ namespace Sass {
10961096
{
10971097
if (hash_ == 0) {
10981098
hash_ = std::hash<std::string>()(sep_string());
1099-
hash_combine(hash_, std::hash<bool>()(is_bracketed()));
11001099
for (size_t i = 0, L = length(); i < L; ++i)
11011100
hash_combine(hash_, (elements()[i])->hash());
11021101
}

0 commit comments

Comments
 (0)