From e252e6ebaff2e1bbcef1e429030bd1d524adc9e6 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Tue, 24 Aug 2010 12:09:19 +0000 Subject: [PATCH] Fix markup. git-svn-id: https://svn.dealii.org/trunk@21691 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/doc/doxygen/headers/coding_conventions.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/deal.II/doc/doxygen/headers/coding_conventions.h b/deal.II/doc/doxygen/headers/coding_conventions.h index 29b76c0939..7265d69103 100644 --- a/deal.II/doc/doxygen/headers/coding_conventions.h +++ b/deal.II/doc/doxygen/headers/coding_conventions.h @@ -309,7 +309,7 @@ we list here: as a member variable, which requires memory allocation — you don't want to declare these inside loops, at least not if the loop is traversed frequently. - +
  • Make variables const: To pick up on the example above, note that in most cases we will never change the variable so initialized @@ -351,7 +351,7 @@ we list here: its argument as a constant value:
    -     template 
    +     template @
          typename Triangulation::cell_iterator
          CellAccessor::child (const unsigned int child_no)
          {
    @@ -360,7 +360,7 @@ we list here:
          }
       
    - Here, the user calls cell-@>child(3), for example. There really + Here, the user calls cell-@>child(3), for example. There really is no reason why the function would ever want to change the value of the child_no argument — so mark it as constant: this both helps the reader of the code understand that this is an -- 2.39.5