From 430d2043fe8638c65c27724ef46fbebc64a466d7 Mon Sep 17 00:00:00 2001 From: Christophe Geuzaine <cgeuzaine@ulg.ac.be> Date: Thu, 24 May 2012 10:45:45 +0000 Subject: [PATCH] fix for debian --- contrib/Netgen/libsrc/general/array.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/Netgen/libsrc/general/array.hpp b/contrib/Netgen/libsrc/general/array.hpp index 40b6048d38..d7eeee342a 100644 --- a/contrib/Netgen/libsrc/general/array.hpp +++ b/contrib/Netgen/libsrc/general/array.hpp @@ -371,7 +371,7 @@ namespace netgen /// array copy ArrayMem & operator= (const FlatArray<T> & a2) { - SetSize (a2.Size()); + this->SetSize (a2.Size()); for (int i = 0; i < size; i++) (*this)[i] = a2[i]; return *this; -- GitLab