Skip to content

Commit

Permalink
Merge pull request #15357 from tjhei/explicit-ad
Browse files Browse the repository at this point in the history
make another AdditionalData ctor explicit
  • Loading branch information
bangerth committed Jun 14, 2023
2 parents 638374f + e88e230 commit 569c0e6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions include/deal.II/lac/sparse_decomposition.h
Original file line number Diff line number Diff line change
Expand Up @@ -144,10 +144,10 @@ class SparseLUDecomposition : protected SparseMatrix<number>,
/**
* Constructor. For the parameters' description, see below.
*/
AdditionalData(const double strengthen_diagonal = 0,
const unsigned int extra_off_diagonals = 0,
const bool use_previous_sparsity = false,
const SparsityPattern *use_this_sparsity = nullptr);
explicit AdditionalData(const double strengthen_diagonal = 0.,
const unsigned int extra_off_diagonals = 0,
const bool use_previous_sparsity = false,
const SparsityPattern *use_this_sparsity = nullptr);

/**
* <code>strengthen_diag</code> times the sum of absolute row entries is
Expand Down

0 comments on commit 569c0e6

Please sign in to comment.