From: bangerth Date: Sat, 2 Oct 2010 02:40:08 +0000 (+0000) Subject: Make objects non-const so that we can load into them. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c565fb2f0ce86920cedeefc03b4b9b2c270cc6f3;p=dealii-svn.git 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 --- 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;