From: Daniel Arndt Date: Wed, 4 Apr 2018 09:41:09 +0000 (+0200) Subject: Fix one occurence of 'val' X-Git-Tag: v9.0.0-rc1~197^2^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6f7569bc6decefd35e3c56fdb0ca4bb5d44d9cc2;p=dealii.git Fix one occurence of 'val' --- diff --git a/include/deal.II/lac/la_vector.h b/include/deal.II/lac/la_vector.h index c3bce2a861..4e561b92ce 100644 --- a/include/deal.II/lac/la_vector.h +++ b/include/deal.II/lac/la_vector.h @@ -426,7 +426,7 @@ namespace LinearAlgebra // If necessary, resize the vector during a read operation if (this->size()!=current_size) this->reinit(this->size()); - ar &boost::serialization::make_array(this->val,this->size()); + ar &boost::serialization::make_array(this->values.get(),this->size()); }