Skip to content

Commit

Permalink
Made C_Map a using declaration and renamed it to map_type.
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexBx committed Sep 20, 2014
1 parent fd8310d commit ef79e66
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Ext/_Container.hpp
Expand Up @@ -136,9 +136,9 @@ class Container {
using extension_type = typename T::ExtData;
typedef base_type* KeyType;
using value_type = extension_type*;
typedef std::unordered_map<KeyType, std::unique_ptr<extension_type>> C_Map;
using map_type = std::unordered_map<KeyType, std::unique_ptr<extension_type>>;

C_Map Items;
map_type Items;

static base_type * SavingObject;
static IStream * SavingStream;
Expand Down

0 comments on commit ef79e66

Please sign in to comment.