Commit 29a8a68e by Aaron Leung

Whoops, need to do a deep copy.

parent 0e87917a
...@@ -33,7 +33,7 @@ namespace Sass { ...@@ -33,7 +33,7 @@ namespace Sass {
n.children = new vector<Node>(); n.children = new vector<Node>();
n.children->reserve(size()); n.children->reserve(size());
for (int i = 0; i < size(); ++i) { for (int i = 0; i < size(); ++i) {
n << at(i); n << at(i).clone();
} }
} }
++fresh; ++fresh;
......
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