From: kanschat Date: Thu, 27 Dec 2007 19:54:08 +0000 (+0000) Subject: include assignment operator in test X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9fb73c1977185dcedfc8233029e7fa96e1a3bf23;p=dealii-svn.git include assignment operator in test git-svn-id: https://svn.dealii.org/trunk@15614 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/base/quadrature_test.cc b/tests/base/quadrature_test.cc index 6035bf98c6..b551dbf1de 100644 --- a/tests/base/quadrature_test.cc +++ b/tests/base/quadrature_test.cc @@ -2,7 +2,7 @@ // $Id$ // Version: $Name$ // -// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 by the deal.II authors +// Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007 by the deal.II authors // // This file is subject to QPL and may not be distributed // without copyright and license information. Please refer @@ -51,9 +51,10 @@ template void check_cells (std::vector*>& quadratures) { + Quadrature quadrature; for (unsigned int n=0; n& quadrature = *quadratures[n]; + quadrature = *quadratures[n]; const std::vector > &points=quadrature.get_points(); const std::vector &weights=quadrature.get_weights();