Commit c8478d3b by Aaron Leung

Removing bits of dead code.

parent 44915666
......@@ -31,16 +31,13 @@ namespace Sass {
};
struct Context {
map<Token, Node> environment;
Environment global_env;
vector<Node> pending;
vector<char*> source_refs;
size_t ref_count;
Context()
: environment(map<Token, Node>()),
// mixins(map<Token, Node>()),
pending(vector<Node>()),
: pending(vector<Node>()),
source_refs(vector<char*>()),
ref_count(0)
{ }
......
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