From 7431697ce2756f02e4dc57f1f968e6afa69b899f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jakub=20Klinkovsk=C3=BD?= <klinkjak@fjfi.cvut.cz>
Date: Thu, 11 Apr 2019 21:03:43 +0200
Subject: [PATCH] Fixed overloading between Array's copy-constructor and
 templated binding constructor

---
 src/TNL/Containers/Array.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/TNL/Containers/Array.h b/src/TNL/Containers/Array.h
index 96545ab327..2bf88373c9 100644
--- a/src/TNL/Containers/Array.h
+++ b/src/TNL/Containers/Array.h
@@ -121,7 +121,7 @@ class Array : public Object
        */
       [[deprecated("Binding functionality of Array is deprecated, ArrayView should be used instead.")]]
       Array( Array& array,
-             const IndexType& begin = 0,
+             const IndexType& begin,
              const IndexType& size = 0 );
 
       /**
-- 
GitLab