Collections type aliasing fix
This one is debatable. It follows modern C++.
This commit is contained in:
@@ -17,8 +17,8 @@ API_CLASS(InBuild) class Array
|
||||
{
|
||||
friend Array;
|
||||
public:
|
||||
typedef T ItemType;
|
||||
typedef typename AllocationType::template Data<T> AllocationData;
|
||||
using ItemType = T;
|
||||
using AllocationData = typename AllocationType::template Data<T>;
|
||||
|
||||
private:
|
||||
int32 _count;
|
||||
|
||||
Reference in New Issue
Block a user