From 17bea751fbc4301fcd945c8c4379453c7364d639 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Klinkovsk=C3=BD?= <klinkjak@fjfi.cvut.cz> Date: Tue, 9 Apr 2019 23:41:41 +0200 Subject: [PATCH] Moved ArrayView::SerializationType from public interface into private section --- src/TNL/Containers/ArrayView.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TNL/Containers/ArrayView.h b/src/TNL/Containers/ArrayView.h index db2f1d1063..e6a9a5fb88 100644 --- a/src/TNL/Containers/ArrayView.h +++ b/src/TNL/Containers/ArrayView.h @@ -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. -- GitLab