From 760e603a87932a8fb226937a490ccf11ca42f756 Mon Sep 17 00:00:00 2001 From: Christian Engwer <christi@dune-project.org> Date: Fri, 5 Oct 2012 09:12:03 +0000 Subject: [PATCH] [doc] fix \code blocks in forloop.hh [[Imported from SVN: r7021]] --- dune/common/forloop.hh | 60 +++++++++++++++++++++--------------------- 1 file changed, 30 insertions(+), 30 deletions(-) diff --git a/dune/common/forloop.hh b/dune/common/forloop.hh index cc637aa83..eb6b265b7 100644 --- a/dune/common/forloop.hh +++ b/dune/common/forloop.hh @@ -13,6 +13,7 @@ namespace Dune { +#ifndef DOXYGEN // GenericForLoop // -------------- @@ -28,8 +29,6 @@ namespace Dune : public Value< last > {}; - - // ForLoopHelper // ------------- @@ -154,8 +153,9 @@ namespace Dune } }; - } + } // end namespace ForLoopHelper +#endif /** \class ForLoop @@ -176,33 +176,33 @@ namespace Dune * * Example of usage: * \code - template<class Tuple> - struct PrintTupleTypes - { - template <int i> - struct Operation - { - template<class Stream> - static void apply(Stream &stream, const std::string &prefix) - { - stream << prefix << i << ": " - << className<typename tuple_element<i, Tuple>::type>() - << std::endl; - } - }; - template<class Stream> - static void print(Stream &stream, const std::string &prefix) - { - // cannot attach on-the-fly in the argument to ForLoop<..>::apply() since - // that would yield an rvalue - std::string extended_prefix = prefix+" "; - - stream << prefix << "tuple<" << std::endl; - ForLoop<Operation, 0, tuple_size<Tuple>::value-1>:: - apply(stream, extended_prefix); - stream << prefix << ">" << std::endl; - } - }; + * template<class Tuple> + * struct PrintTupleTypes + * { + * template <int i> + * struct Operation + * { + * template<class Stream> + * static void apply(Stream &stream, const std::string &prefix) + * { + * stream << prefix << i << ": " + * << className<typename tuple_element<i, Tuple>::type>() + * << std::endl; + * } + * }; + * template<class Stream> + * static void print(Stream &stream, const std::string &prefix) + * { + * // cannot attach on-the-fly in the argument to ForLoop<..>::apply() since + * // that would yield an rvalue + * std::string extended_prefix = prefix+" "; + * + * stream << prefix << "tuple<" << std::endl; + * ForLoop<Operation, 0, tuple_size<Tuple>::value-1>:: + * apply(stream, extended_prefix); + * stream << prefix << ">" << std::endl; + * } + * }; * \endcode * * \note Don't use any rvalues as the arguments to apply(). -- GitLab