Move everything from table_unique/table_equiv into table

This commit is contained in:
Daniel James
2017-04-24 09:46:05 +01:00
parent e518120104
commit b070bb5e49
6 changed files with 663 additions and 757 deletions

View File

@@ -65,6 +65,11 @@ template <typename T> struct allocator : std::allocator<T>
allocator(const allocator<T2>& other) : std::allocator<T>(other)
{
}
template <typename T2>
allocator(const std::allocator<T2>& other) : std::allocator<T>(other)
{
}
};
// Declare some members of a structs.