From c565fb2f0ce86920cedeefc03b4b9b2c270cc6f3 Mon Sep 17 00:00:00 2001 From: bangerth Date: Sat, 2 Oct 2010 02:40:08 +0000 Subject: [PATCH] Make objects non-const so that we can load into them. git-svn-id: https://svn.dealii.org/trunk@22228 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/serialization/tensor_base.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/serialization/tensor_base.cc b/tests/serialization/tensor_base.cc index 2a00d316a0..82d5766433 100644 --- a/tests/serialization/tensor_base.cc +++ b/tests/serialization/tensor_base.cc @@ -24,8 +24,8 @@ template -void verify (const T &t1, - const T &t2) +void verify (T &t1, + T &t2) { // save data to archive std::ostringstream oss; -- 2.39.5