From: Wolfgang Bangerth Date: Thu, 25 Feb 1999 18:14:58 +0000 (+0000) Subject: Fix an omission of Guido's. Function still needs an implementation. X-Git-Tag: v8.0.0~22347 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4ff3ec2381eb4f7f486c36df037d5b568543b5f6;p=dealii.git Fix an omission of Guido's. Function still needs an implementation. git-svn-id: https://svn.dealii.org/trunk@911 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/base/source/tensor.cc b/deal.II/base/source/tensor.cc index 696cf9f1f0..b3800bda16 100644 --- a/deal.II/base/source/tensor.cc +++ b/deal.II/base/source/tensor.cc @@ -3,6 +3,14 @@ #include #include +template void +Tensor<1,dim>::unroll( vector& result) const +{ + Assert(false, + ExcWrongVectorSize(1,1)); +} + + template void Tensor::unroll( vector& result) const {