Skip to content

Commit

Permalink
Improve deprecation handling in unquote function
Browse files Browse the repository at this point in the history
Fixes sass#1291
  • Loading branch information
mgreter authored and xzyfer committed Jul 8, 2015
1 parent f2569ba commit 19ebc0c
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions functions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -771,9 +771,6 @@ namespace Sass {
if (dynamic_cast<Null*>(arg)) {
return new (ctx.mem) Null(pstate);
}
else if (List* list = dynamic_cast<List*>(arg)) {
return list;
}
else if (String_Quoted* string_quoted = dynamic_cast<String_Quoted*>(arg)) {
String_Constant* result = new (ctx.mem) String_Constant(pstate, string_quoted->value());
// remember if the string was quoted (color tokens)
Expand Down

0 comments on commit 19ebc0c

Please sign in to comment.