Commit 53096e97 by Aaron Leung

Minor cleanup.

parent 7b9f54fd
......@@ -28,7 +28,6 @@ namespace Sass {
n.has_backref = has_backref;
n.from_variable = from_variable;
n.eval_me = eval_me;
n.is_hex = is_hex;
if (children) {
n.children = new vector<Node>();
n.children->reserve(size());
......
......@@ -98,7 +98,7 @@ namespace Sass {
has_backref(n.has_backref),
from_variable(n.from_variable),
eval_me(n.eval_me)
{ /*n.release();*/ ++copied; } // No joint custody.
{ ++copied; }
Node(size_t line_number, Type type, size_t length = 0)
: line_number(line_number),
......@@ -224,7 +224,6 @@ namespace Sass {
{
line_number = n.line_number;
children = n.children;
// n.release();
token = n.token;
numeric_value = n.numeric_value;
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