Skip to content
Snippets Groups Projects
Commit 544ce33a authored by Stéphane Del Pino's avatar Stéphane Del Pino
Browse files

Add Array<T>::data_type.

It is set by 'using data_type = T'
parent db531ee3
Branches
Tags
1 merge request!7Feature/itemvalue
......@@ -7,6 +7,9 @@
template <typename DataType>
class Array
{
public:
using data_type = DataType;
private:
Kokkos::View<DataType*> m_values;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment