Skip to content

Commit e119135

Browse files
committed
Fix a compiler warning
1 parent 6d5b6b2 commit e119135

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ast.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -824,7 +824,7 @@ namespace Sass {
824824
} else if (last()->head_ && last()->head_->length()) {
825825
Compound_Selector* rh = last()->head();
826826
size_t i = 0, L = h->length();
827-
if (Type_Selector* ts = dynamic_cast<Type_Selector*>(h->first())) {
827+
if (dynamic_cast<Type_Selector*>(h->first())) {
828828
if (Selector_Qualifier* sq = dynamic_cast<Selector_Qualifier*>(rh->last())) {
829829
Selector_Qualifier* sqs = new Selector_Qualifier(*sq);
830830
sqs->name(sqs->name() + (*h)[0]->name());

0 commit comments

Comments
 (0)