*/
struct DistortedCellList : public dealii::ExceptionBase
{
+ /**
+ * Destructor. Empty, but needed
+ * for the sake of exception
+ * specification, since the base
+ * class has this exception
+ * specification and the
+ * automatically generated
+ * destructor would have a
+ * different one due to member
+ * objects.
+ */
+ virtual ~DistortedCellList () throw();
+
/**
* A list of those cells
* among the coarse mesh
+template<int dim, int spacedim>
+Triangulation<dim, spacedim>::DistortedCellList::~DistortedCellList () throw ()
+{
+ // don't do anything here. the compiler
+ // will automatically convert any
+ // exceptions created by the destructors of
+ // the member variables into abort() in
+ // order to satisfy the throw()
+ // specification
+}
+
+
+
template<int dim, int spacedim>
void Triangulation<dim, spacedim>::
In the beginning the Universe was created. This has made a lot of
people very angry and has been widely regarded as a bad move.
Douglas Adams