From: Fahad Alrashed Date: Sun, 9 Nov 2014 17:12:17 +0000 (-0600) Subject: Fixed the documentation of clear() X-Git-Tag: v8.2.0-rc1~75^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=22da170a29ed068dd57e11870b88b0f0cf08fe1f;p=dealii.git Fixed the documentation of clear() Added an entry to changes.h --- diff --git a/doc/news/changes.h b/doc/news/changes.h index 8bc18b2d41..00194caf27 100644 --- a/doc/news/changes.h +++ b/doc/news/changes.h @@ -333,6 +333,12 @@ inconvenience this causes.

Specific improvements

    +
  1. New: TableHandler objects can be cleared - i.e. reset to a + zero-sized state. +
    + (Fahad Alrashed, 2014/11/09) +
  2. +
  3. New: The FE_Nothing class now has a second template argument corresponding to the space dimension in which the mesh is embedded, like many other classes. This allows to use this element in codimension diff --git a/include/deal.II/base/table_handler.h b/include/deal.II/base/table_handler.h index e6d81d920e..924b6269af 100644 --- a/include/deal.II/base/table_handler.h +++ b/include/deal.II/base/table_handler.h @@ -514,7 +514,9 @@ public: void write_tex (std::ostream &file, const bool with_header=true) const; /** - * Clears the values in the table. + * Clears the rows of the table, + * i.e. calls clear() on all the + * underlying storage data structures. */ void clear ();