From: Wolfgang Bangerth Date: Sat, 12 Nov 2016 14:33:19 +0000 (-0700) Subject: Initialize a member variable. X-Git-Tag: v8.5.0-rc1~408^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d7b49316559a8ebf9141bdb136b7b6f129f32a43;p=dealii.git Initialize a member variable. --- diff --git a/source/distributed/solution_transfer.cc b/source/distributed/solution_transfer.cc index 4713e5593a..d8f22004d4 100644 --- a/source/distributed/solution_transfer.cc +++ b/source/distributed/solution_transfer.cc @@ -46,7 +46,8 @@ namespace parallel template SolutionTransfer::SolutionTransfer (const DoFHandlerType &dof) : - dof_handler(&dof, typeid(*this).name()) + dof_handler(&dof, typeid(*this).name()), + offset (numbers::invalid_unsigned_int) { Assert (dynamic_cast*> (&dof_handler->get_triangulation()) != 0,