From 1949fc2da3876c723c1c4cdff92dfa0a408d6182 Mon Sep 17 00:00:00 2001
From: Oliver Sander <sander@igpm.rwth-aachen.de>
Date: Thu, 30 Jul 2015 14:30:37 +0200
Subject: [PATCH] Document constructor from std::initializer_list

Otherwise it won't appear in the doxygen documentation
---
 dune/common/fvector.hh | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dune/common/fvector.hh b/dune/common/fvector.hh
index 2b14a5899..e8b4bba47 100644
--- a/dune/common/fvector.hh
+++ b/dune/common/fvector.hh
@@ -119,6 +119,7 @@ namespace Dune {
     FieldVector (const FieldVector & x) : _data(x._data)
     {}
 
+    /** \brief Construct from a std::initializer_list */
     FieldVector (std::initializer_list<K> const &l)
     {
       assert(l.size() == dimension);// Actually, this is not needed any more!
-- 
GitLab