Skip to content

Commit f224c96

Browse files
committed
Merge remote-tracking branch 'origin/pr/1174'
2 parents 01d60db + 3030315 commit f224c96

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

eval.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -902,9 +902,9 @@ namespace Sass {
902902
{
903903
string acc;
904904
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-
}
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+
// }
908908
acc += interpolation((*s)[i]);
909909
}
910910
String_Quoted* str = new (ctx.mem) String_Quoted(s->pstate(), acc);

0 commit comments

Comments
 (0)