Skip to content
Snippets Groups Projects
Commit bb2ba08e authored by Markus Blatt's avatar Markus Blatt
Browse files

Make superlutest compile for types other than double again. (Completed)

The last patch missed one instance of double.
# Please enter the commit message for your changes. Lines starting
# with '#' will be ignored, and an empty message aborts the commit.
# On branch master
# Changes to be committed:
#   (use "git reset HEAD <file>..." to unstage)
#
#	modified:   ../../../../dune/istl/test/superlutest.cc
#
# Untracked files:
#   (use "git add <file>..." to include in what will be committed)
#
#	../../../../build-clang/
#	../../../../build-test/
#	../../../../parallel/
#	../../../../test-shared/
parent e787f1cc
No related branches found
No related tags found
No related merge requests found
......@@ -78,5 +78,5 @@ int main(int argc, char** argv)
std::cout<<"Defect reduction is "<<res.reduction<<std::endl;
solver1.apply(x,b, res);
solver1.apply(reinterpret_cast<FIELD_TYPE*>(&x[0]), reinterpret_cast<double*>(&b[0]));
solver1.apply(reinterpret_cast<FIELD_TYPE*>(&x[0]), reinterpret_cast<FIELD_TYPE*>(&b[0]));
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment