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.
2 parents 01d60db + 3030315 commit f224c96Copy full SHA for f224c96
eval.cpp
@@ -902,9 +902,9 @@ namespace Sass {
902
{
903
string acc;
904
for (size_t i = 0, L = s->length(); i < L; ++i) {
905
- if (String_Quoted* str_quoted = dynamic_cast<String_Quoted*>((*s)[i])) {
906
- if (!str_quoted->is_delayed()) str_quoted->value(string_eval_escapes(str_quoted->value()));
907
- }
+ // if (String_Quoted* str_quoted = dynamic_cast<String_Quoted*>((*s)[i])) {
+ // if (!str_quoted->is_delayed()) str_quoted->value(string_eval_escapes(str_quoted->value()));
+ // }
908
acc += interpolation((*s)[i]);
909
}
910
String_Quoted* str = new (ctx.mem) String_Quoted(s->pstate(), acc);
0 commit comments