Skip to content
Snippets Groups Projects
Commit 7abcb600 authored by Jö Fahlke's avatar Jö Fahlke
Browse files

[fs1613][parametertreetest] Kill spurious left-over #ifndef NDEBUG.

parent 32ff3bee
No related branches found
No related tags found
No related merge requests found
......@@ -53,12 +53,10 @@ void testparam(const P & p)
// try reading array like structures
std::vector<unsigned int>
array1 = p.template get< std::vector<unsigned int> >("array");
#ifndef NDEBUG
Dune::array<unsigned int, 8>
array2 = p.template get< Dune::array<unsigned int, 8> >("array");
Dune::FieldVector<unsigned int, 8>
array3 = p.template get< Dune::FieldVector<unsigned int, 8> >("array");
#endif
check_assert(array1.size() == 8);
for (unsigned int i=0; i<8; i++)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment