Skip to content
Snippets Groups Projects
Commit 1318e0e3 authored by Ansgar Burchardt's avatar Ansgar Burchardt
Browse files

Merge branch 'bugfix/build-failure-on-i386' into 'master'

Use correct type for second template argument of `std::array`

See merge request !90
parents 5f9c24ed a722b3bc
No related branches found
No related tags found
No related merge requests found
......@@ -599,7 +599,7 @@ namespace Dune {
}
// Recursively print all the blocks -- specialization for std::array
template<class K, unsigned long n>
template<class K, std::size_t n>
void writeVectorToMatlabHelper (const std::array<K,n>& v, std::ostream& s)
{
for (const auto& entry : v)
......
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