Skip to content

Commit 877c9ba

Browse files
committed
Fix string initialisation
This PR fixes a funky string initialisation. Fixes #1270
1 parent 0e6b4a2 commit 877c9ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

parser.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ namespace Sass {
8686
}
8787

8888
bool semicolon = false;
89-
string(error_message);
89+
string error_message;
9090
lex< optional_spaces >();
9191
Selector_Lookahead lookahead_result;
9292
while (position < end) {

0 commit comments

Comments
 (0)