From 1f2893acc01824f5f72fea190dfd517b0fd2bc07 Mon Sep 17 00:00:00 2001 From: Gauthier Becker <gauthierbecker@gmail.com> Date: Wed, 20 Jul 2011 09:26:18 +0000 Subject: [PATCH] Add switch implicit->explicit (other case has to be done) Fix bug with restart file format --- Solver/quadratureRules.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Solver/quadratureRules.h b/Solver/quadratureRules.h index 525adc7a5a..d84d4b1dc8 100644 --- a/Solver/quadratureRules.h +++ b/Solver/quadratureRules.h @@ -73,6 +73,8 @@ class GaussQuadrature : public QuadratureBase e->getIntegrationPoints(integrationOrder, &npts, GP); return npts; } + // copy constructor + GaussQuadrature(const GaussQuadrature &other) : info(other.info), order(other.order){} }; #endif //_QUADRATURERULES_H_ -- GitLab