Minor change top variable declaration

This commit is contained in:
John Wellbelove 2018-12-29 15:35:12 +00:00
parent a8f07e0622
commit fa891b9dbc

View File

@ -1693,7 +1693,7 @@ namespace
TEST(test_move)
{
const size_t SIZE = 10U;
typedef etl::deque<std::unique_ptr<unsigned>, SIZE> Data;
typedef etl::deque<std::unique_ptr<uint32_t>, SIZE> Data;
Data data1;