@@ -6,17 +6,17 @@ namespace Sass {
66
77 template <typename T>
88 Environment<T>::Environment(bool is_shadow)
9- : local_frame_(std::map <std::string, T>()),
9+ : local_frame_(environment_map <std::string, T>()),
1010 parent_ (0 ), is_shadow_(false )
1111 { }
1212 template <typename T>
1313 Environment<T>::Environment(Environment<T>* env, bool is_shadow)
14- : local_frame_(std::map <std::string, T>()),
14+ : local_frame_(environment_map <std::string, T>()),
1515 parent_ (env), is_shadow_(is_shadow)
1616 { }
1717 template <typename T>
1818 Environment<T>::Environment(Environment<T>& env, bool is_shadow)
19- : local_frame_(std::map <std::string, T>()),
19+ : local_frame_(environment_map <std::string, T>()),
2020 parent_ (&env), is_shadow_(is_shadow)
2121 { }
2222
@@ -45,7 +45,7 @@ namespace Sass {
4545 }
4646
4747 template <typename T>
48- std::map <std::string, T>& Environment<T>::local_frame() {
48+ environment_map <std::string, T>& Environment<T>::local_frame() {
4949 return local_frame_;
5050 }
5151
@@ -177,7 +177,7 @@ namespace Sass {
177177 size_t indent = 0 ;
178178 if (parent_) indent = parent_->print (prefix) + 1 ;
179179 std::cerr << prefix << std::string (indent, ' ' ) << " == " << this << std::endl;
180- for (typename std::map <std::string, T>::iterator i = local_frame_.begin (); i != local_frame_.end (); ++i) {
180+ for (typename environment_map <std::string, T>::iterator i = local_frame_.begin (); i != local_frame_.end (); ++i) {
181181 if (!ends_with (i->first , " [f]" ) && !ends_with (i->first , " [f]4" ) && !ends_with (i->first , " [f]2" )) {
182182 std::cerr << prefix << std::string (indent, ' ' ) << i->first << " " << i->second ;
183183 if (Value_Ptr val = Cast<Value>(i->second ))
0 commit comments