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
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -65,13 +65,13 @@ template< typename Value,
          typename Index = int >
class ArrayView
{
   using SerializationType = Array< Value, Devices::Host, Index >;
public:
   using ValueType = Value;
   using DeviceType = Device;
   using IndexType = Index;
   using HostType = ArrayView< Value, Devices::Host, Index >;
   using CudaType = ArrayView< Value, Devices::Cuda, Index >;
   using SerializationType = Array< Value, Devices::Host, Index >;

   /**
    * \brief Returns type of array view in C++ style.