We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d5b6b2 commit e119135Copy full SHA for e119135
src/ast.cpp
@@ -824,7 +824,7 @@ namespace Sass {
824
} else if (last()->head_ && last()->head_->length()) {
825
Compound_Selector* rh = last()->head();
826
size_t i = 0, L = h->length();
827
- if (Type_Selector* ts = dynamic_cast<Type_Selector*>(h->first())) {
+ if (dynamic_cast<Type_Selector*>(h->first())) {
828
if (Selector_Qualifier* sq = dynamic_cast<Selector_Qualifier*>(rh->last())) {
829
Selector_Qualifier* sqs = new Selector_Qualifier(*sq);
830
sqs->name(sqs->name() + (*h)[0]->name());
0 commit comments