Skip to content
Snippets Groups Projects
Commit 17bea751 authored by Jakub Klinkovský's avatar Jakub Klinkovský Committed by Tomáš Oberhuber
Browse files

Moved ArrayView::SerializationType from public interface into private section

parent dbc325ab
No related branches found
No related tags found
1 merge request!29Revision
...@@ -65,13 +65,13 @@ template< typename Value, ...@@ -65,13 +65,13 @@ template< typename Value,
typename Index = int > typename Index = int >
class ArrayView class ArrayView
{ {
using SerializationType = Array< Value, Devices::Host, Index >;
public: public:
using ValueType = Value; using ValueType = Value;
using DeviceType = Device; using DeviceType = Device;
using IndexType = Index; using IndexType = Index;
using HostType = ArrayView< Value, Devices::Host, Index >; using HostType = ArrayView< Value, Devices::Host, Index >;
using CudaType = ArrayView< Value, Devices::Cuda, Index >; using CudaType = ArrayView< Value, Devices::Cuda, Index >;
using SerializationType = Array< Value, Devices::Host, Index >;
/** /**
* \brief Returns type of array view in C++ style. * \brief Returns type of array view in C++ style.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment