Added etl::

This commit is contained in:
John Wellbelove 2017-04-17 17:29:27 +01:00
parent b7faa3a3f8
commit 4c8aa442bb
2 changed files with 2 additions and 2 deletions

View File

@ -1275,7 +1275,7 @@ namespace etl
private:
/// The pool of nodes used in the list.
etl::pool<typename iforward_list<T>::data_node_t, MAX_SIZE> node_pool;
etl::pool<typename etl::iforward_list<T>::data_node_t, MAX_SIZE> node_pool;
};
}

View File

@ -1466,7 +1466,7 @@ namespace etl
private:
/// The pool of nodes used in the list.
etl::pool<typename list::data_node_t, MAX_SIZE> node_pool;
etl::pool<typename etl::ilist<T>::data_node_t, MAX_SIZE> node_pool;
};
}