From: bangerth Date: Sat, 2 Jul 2011 21:34:53 +0000 (+0000) Subject: Fix non-sensical placement of a join_all statement. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=acd930d44bde82e8a5fbf59bc6986b1e02f9153c;p=dealii-svn.git Fix non-sensical placement of a join_all statement. git-svn-id: https://svn.dealii.org/trunk@23913 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/bits/step-14.cc b/tests/bits/step-14.cc index 485b92c75f..c80be66217 100644 --- a/tests/bits/step-14.cc +++ b/tests/bits/step-14.cc @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010 by the deal.II authors +// Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -456,8 +456,8 @@ namespace LaplaceSolver thread_ranges[thread].first, thread_ranges[thread].second, mutex); - threads.join_all(); } + threads.join_all(); assemble_rhs (linear_system.rhs); linear_system.hanging_node_constraints.condense (linear_system.rhs);