Skip to content
Snippets Groups Projects
Commit 1949fc2d authored by Oliver Sander's avatar Oliver Sander
Browse files

Document constructor from std::initializer_list

Otherwise it won't appear in the doxygen documentation
parent 1906105f
No related branches found
No related tags found
No related merge requests found
......@@ -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!
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment