Commit 53096e97 by Aaron Leung

Minor cleanup.

parent 7b9f54fd
...@@ -28,7 +28,6 @@ namespace Sass { ...@@ -28,7 +28,6 @@ namespace Sass {
n.has_backref = has_backref; n.has_backref = has_backref;
n.from_variable = from_variable; n.from_variable = from_variable;
n.eval_me = eval_me; n.eval_me = eval_me;
n.is_hex = is_hex;
if (children) { if (children) {
n.children = new vector<Node>(); n.children = new vector<Node>();
n.children->reserve(size()); n.children->reserve(size());
......
...@@ -98,7 +98,7 @@ namespace Sass { ...@@ -98,7 +98,7 @@ namespace Sass {
has_backref(n.has_backref), has_backref(n.has_backref),
from_variable(n.from_variable), from_variable(n.from_variable),
eval_me(n.eval_me) eval_me(n.eval_me)
{ /*n.release();*/ ++copied; } // No joint custody. { ++copied; }
Node(size_t line_number, Type type, size_t length = 0) Node(size_t line_number, Type type, size_t length = 0)
: line_number(line_number), : line_number(line_number),
...@@ -224,7 +224,6 @@ namespace Sass { ...@@ -224,7 +224,6 @@ namespace Sass {
{ {
line_number = n.line_number; line_number = n.line_number;
children = n.children; children = n.children;
// n.release();
token = n.token; token = n.token;
numeric_value = n.numeric_value; numeric_value = n.numeric_value;
type = n.type; type = n.type;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment