From d19c88f39b34e322ed7b1abffa0eed86efdba05b Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Wed, 24 Aug 2011 19:16:00 +0000 Subject: [PATCH] Reorder member functions. git-svn-id: https://svn.dealii.org/trunk@24183 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/include/deal.II/base/quadrature.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/deal.II/include/deal.II/base/quadrature.h b/deal.II/include/deal.II/base/quadrature.h index a2aba45f49..003c52b014 100644 --- a/deal.II/include/deal.II/base/quadrature.h +++ b/deal.II/include/deal.II/base/quadrature.h @@ -182,6 +182,11 @@ class Quadrature : public Subscriptor */ Quadrature (const Point &point); + /** + * Virtual destructor. + */ + virtual ~Quadrature (); + /** * Assignment operator. Copies * contents of #weights and @@ -189,7 +194,7 @@ class Quadrature : public Subscriptor * size. */ Quadrature& operator = (const Quadrature&); - + /** * Test for equality of two quadratures. */ @@ -202,11 +207,6 @@ class Quadrature : public Subscriptor */ void initialize(const std::vector > &points, const std::vector &weights); - - /** - * Virtual destructor. - */ - virtual ~Quadrature (); /** * Number of quadrature points. @@ -247,9 +247,9 @@ class Quadrature : public Subscriptor std::size_t memory_consumption () const; /** - * Write or read the data of this object to or + * Write or read the data of this object to or * from a stream for the purpose of serialization. - */ + */ template void serialize (Archive & ar, const unsigned int version); -- 2.39.5