Skip to content

Commit 8a68679

Browse files
xzyfermgreter
authored andcommitted
Revert "Merge pull request #2281 from xzyfer/list-equality"
This reverts commit 7abaa75, reversing changes made to 6537833.
1 parent dcb2e3f commit 8a68679

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
@@ -2258,7 +2258,6 @@ namespace Sass {
22582258
if (List_Ptr_Const r = Cast<List>(&rhs)) {
22592259
if (length() != r->length()) return false;
22602260
if (separator() != r->separator()) return false;
2261-
if (is_bracketed() != r->is_bracketed()) return false;
22622261
for (size_t i = 0, L = length(); i < L; ++i) {
22632262
Expression_Obj rv = r->at(i);
22642263
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)