From 0d09ba7c6e678e35f7e726444c4ad753444b02c3 Mon Sep 17 00:00:00 2001
From: Daniel Arndt <daniel.arndt@iwr.uni-heidelberg.de>
Date: Thu, 5 Jul 2018 16:00:16 +0200
Subject: [PATCH] Expand lambda body

---
 include/deal.II/fe/fe_enriched.h | 16 +++++++++++++---
 1 file changed, 13 insertions(+), 3 deletions(-)

diff --git a/include/deal.II/fe/fe_enriched.h b/include/deal.II/fe/fe_enriched.h
index 428b6641c8..89face45e1 100644
--- a/include/deal.II/fe/fe_enriched.h
+++ b/include/deal.II/fe/fe_enriched.h
@@ -255,11 +255,21 @@ public:
    *   &fe_base,
    *   {&fe_1, &fe_2},
    *   {{[=] (const typename Triangulation<dim>::cell_iterator &)
-   *       -> const Function<dim> * {return &fe_1_function1;},
+   *       -> const Function<dim> *
+   *     {
+   *       return &fe_1_function1;
+   *     },
    *     [=] (const typename Triangulation<dim>::cell_iterator &)
-   *       -> const Function<dim> * {return &fe_1_function2;}},
+   *       -> const Function<dim> *
+   *     {
+   *       return &fe_1_function2;
+   *     }},
    *    {[=] (const typename Triangulation<dim>::cell_iterator &)
-   *       -> const Function<dim> * {return &fe_2_function;}}});
+   *       -> const Function<dim> *
+   *     {
+   *       return &fe_2_function;
+   *     }
+   *    }});
    * @endcode
    *
    * @note When using the same finite element for enrichment with N
-- 
2.39.5