From: Martin Kronbichler Date: Mon, 1 Nov 2010 12:45:15 +0000 (+0000) Subject: Indent. X-Git-Tag: v8.0.0~5089 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3f9665eb2453a620f2c654419cab07c8a4ba8a29;p=dealii.git Indent. git-svn-id: https://svn.dealii.org/trunk@22568 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/include/deal.II/base/table.h b/deal.II/include/deal.II/base/table.h index 3809abbb79..d940eaf627 100644 --- a/deal.II/include/deal.II/base/table.h +++ b/deal.II/include/deal.II/base/table.h @@ -912,8 +912,9 @@ class Table<2,T> : public TableBase<2,T> * This version of the function * only allows read access. */ - typename std::vector::const_reference operator () (const unsigned int i, - const unsigned int j) const; + typename std::vector::const_reference + operator () (const unsigned int i, + const unsigned int j) const; /** @@ -925,8 +926,9 @@ class Table<2,T> : public TableBase<2,T> * This version of the function * allows read-write access. */ - typename std::vector::reference operator () (const unsigned int i, - const unsigned int j); + typename std::vector::reference + operator () (const unsigned int i, + const unsigned int j); /** * Make the corresponding @@ -980,7 +982,7 @@ class Table<2,T> : public TableBase<2,T> * then called vector2d. */ typename std::vector::reference el (const unsigned int i, - const unsigned int j); + const unsigned int j); /** * Return the value of the @@ -1007,7 +1009,7 @@ class Table<2,T> : public TableBase<2,T> * then called vector2d. */ typename std::vector::const_reference el (const unsigned int i, - const unsigned int j) const; + const unsigned int j) const; };