File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -690,9 +690,9 @@ namespace Sass {
690
690
b->op (), s_l->last (), b->right ());
691
691
bin_ex->is_delayed (b->left ()->is_delayed () || b->right ()->is_delayed ()); // unverified
692
692
for (size_t i = 0 ; i < s_l->length () - 1 ; ++i) {
693
- ret_schema->append (Cast<PreValue>( s_l->at (i)->perform (this ) ));
693
+ ret_schema->append (s_l->at (i)->perform (this ));
694
694
}
695
- ret_schema->append (Cast<PreValue>( bin_ex->perform (this ) ));
695
+ ret_schema->append (bin_ex->perform (this ));
696
696
return ret_schema->perform (this );
697
697
}
698
698
}
@@ -703,9 +703,9 @@ namespace Sass {
703
703
Binary_Expression_Obj bin_ex = SASS_MEMORY_NEW (Binary_Expression, b->pstate (),
704
704
b->op (), b->left (), s_r->first ());
705
705
bin_ex->is_delayed (b->left ()->is_delayed () || b->right ()->is_delayed ()); // verified
706
- ret_schema->append (Cast<PreValue>( bin_ex->perform (this ) ));
706
+ ret_schema->append (bin_ex->perform (this ));
707
707
for (size_t i = 1 ; i < s_r->length (); ++i) {
708
- ret_schema->append (Cast<PreValue>( s_r->at (i)->perform (this ) ));
708
+ ret_schema->append (s_r->at (i)->perform (this ));
709
709
}
710
710
return ret_schema->perform (this );
711
711
}
You can’t perform that action at this time.
0 commit comments