From: Denis Davydov Date: Sun, 1 Mar 2015 17:14:10 +0000 (+0100) Subject: instantiate Vector X-Git-Tag: v8.3.0-rc1~184^2~16 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=18075e71ca3626fd55e868009a415506920428fd;p=dealii.git instantiate Vector --- diff --git a/source/lac/vector.cc b/source/lac/vector.cc index 42fb1af5bc..18dee6b06d 100644 --- a/source/lac/vector.cc +++ b/source/lac/vector.cc @@ -19,6 +19,21 @@ DEAL_II_NAMESPACE_OPEN #include "vector.inst" +// instantiate for integers: +template class Vector; +namespace internal +{ + namespace Vector + { + template void copy_vector (const dealii::Vector&, + dealii::Vector&); + } +} + +template +void Vector::reinit(const Vector&, const bool); + + // do a few functions that currently don't fit the scheme because they have // two template arguments that need to be different (the case of same // arguments is covered by the default copy constructor and copy operator that