Skip to content

Commit a487400

Browse files
committed
Remove obsolete eval call (fixes calling eval twice)
Fixes #1944
1 parent 23f23ee commit a487400

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/eval.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1176,7 +1176,6 @@ namespace Sass {
11761176
std::string res("");
11771177
for (size_t i = 0; i < L; ++i) {
11781178
bool is_quoted = dynamic_cast<String_Quoted*>((*s)[i]) != NULL;
1179-
(*s)[i]->perform(this);
11801179
if (was_quoted && !(*s)[i]->is_interpolant() && !was_interpolant) { res += " "; }
11811180
else if (i > 0 && is_quoted && !(*s)[i]->is_interpolant() && !was_interpolant) { res += " "; }
11821181
Expression* ex = (*s)[i]->is_delayed() ? (*s)[i] : (*s)[i]->perform(this);

0 commit comments

Comments
 (0)