From 22b6e63de736e2401b37f542bef8dc6acb3f8cc9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Klinkovsk=C3=BD?= <klinkovsky@mmg.fjfi.cvut.cz> Date: Thu, 21 Apr 2022 09:47:01 +0200 Subject: [PATCH] Fixed getSerializationType method in Array --- src/TNL/Containers/Array.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TNL/Containers/Array.hpp b/src/TNL/Containers/Array.hpp index 473c778cb2..e365df0f3b 100644 --- a/src/TNL/Containers/Array.hpp +++ b/src/TNL/Containers/Array.hpp @@ -134,7 +134,7 @@ template< typename Value, typename Device, typename Index, typename Allocator > std::string Array< Value, Device, Index, Allocator >::getSerializationType() { - return detail::ArrayIO< Value, Device, Index >::getSerializationType(); + return detail::ArrayIO< Value, Index, Allocator >::getSerializationType(); } template< typename Value, typename Device, typename Index, typename Allocator > -- GitLab