Fix a compilation error.
This commit is contained in:
parent
3d5f6c1dae
commit
35a08da555
1 changed files with 2 additions and 2 deletions
|
@ -49,8 +49,8 @@ class unit_map {
|
|||
mutable n_ref_counter::t_ref_counter<signed int> ref_count_;
|
||||
};
|
||||
typedef std::list<unit_pod> t_ilist;
|
||||
typedef boost::unordered_map<size_t, typename t_ilist::iterator> t_umap;
|
||||
typedef boost::unordered_map<map_location, typename t_ilist::iterator> t_lmap;
|
||||
typedef boost::unordered_map<size_t, t_ilist::iterator> t_umap;
|
||||
typedef boost::unordered_map<map_location, t_ilist::iterator> t_lmap;
|
||||
|
||||
|
||||
public:
|
||||
|
|
Loading…
Add table
Reference in a new issue