Skip to content
Snippets Groups Projects

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

Merged Ansgar Burchardt requested to merge bugfix/build-failure-on-i386 into master
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
+ 1
1
@@ -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)
Loading