Skip to content

Commit

Permalink
Ifpack2: Fix #1706
Browse files Browse the repository at this point in the history
@trilinos/ifpack2 Ifpack2 had link errors in an ETI (explicit template
instantiation) OFF build.  Line 53 of Ifpack2_ILUT_def.hpp only
included Ifpack2_LocalSparseTriangularSolver_decl.hpp, but the file
calls LocalSparseTriangularSolver methods.  Thus, it should have
included Ifpack2_LocalSparseTriangularSolver.hpp.  (In an ETI OFF
build, the latter is a generated header file that includes both
Ifpack2_LocalSparseTriangularSolver_decl.hpp and
Ifpack2_LocalSparseTriangularSolver_def.hpp.)  This commit fixes that.
  • Loading branch information
Mark Hoemmen committed Sep 8, 2017
1 parent 475118b commit f93f355
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/ifpack2/src/Ifpack2_ILUT_def.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@

#include "Ifpack2_Heap.hpp"
#include "Ifpack2_LocalFilter.hpp"
#include "Ifpack2_LocalSparseTriangularSolver_decl.hpp"
#include "Ifpack2_LocalSparseTriangularSolver.hpp"
#include "Ifpack2_Parameters.hpp"
#include "Tpetra_CrsMatrix.hpp"
#include "Teuchos_Time.hpp"
Expand Down

0 comments on commit f93f355

Please sign in to comment.