Skip to content
Snippets Groups Projects
Commit 212ccdc0 authored by Martin Nolte's avatar Martin Nolte
Browse files

merge patch 5515 from trunk

[[Imported from SVN: r5519]]
parent 9214d5bb
No related branches found
No related tags found
No related merge requests found
......@@ -398,6 +398,13 @@ namespace Dune {
}
#endif
/** \brief copy constructor */
FieldVector ( const FieldVector &other )
{
for( size_type i = 0; i < SIZE; ++i )
p[ i ] = other[ i ];
}
/** \brief Assigment from other vector */
FieldVector& operator= (const FieldVector& other) {
for (size_type i=0; i<SIZE; i++)
......
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