Skip to content

Commit

Permalink
Tpetra: make column map arg in 4 map constructor non-default
Browse files Browse the repository at this point in the history
  • Loading branch information
aprokop authored and mhoemmen committed Jun 18, 2018
1 parent 1fa5612 commit 04aeeb3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/tpetra/core/src/Tpetra_CrsGraph_decl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -561,7 +561,7 @@ namespace Tpetra {
/// default values.
CrsGraph (const local_graph_type& lclGraph,
const Teuchos::RCP<const map_type>& rowMap,
const Teuchos::RCP<const map_type>& colMap = Teuchos::null,
const Teuchos::RCP<const map_type>& colMap,
const Teuchos::RCP<const map_type>& domainMap = Teuchos::null,
const Teuchos::RCP<const map_type>& rangeMap = Teuchos::null,
const Teuchos::RCP<Teuchos::ParameterList>& params = Teuchos::null);
Expand Down
2 changes: 1 addition & 1 deletion packages/tpetra/core/src/Tpetra_CrsMatrix_decl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,7 @@ namespace Tpetra {
/// default values.
CrsMatrix (const local_matrix_type& lclMatrix,
const Teuchos::RCP<const map_type>& rowMap,
const Teuchos::RCP<const map_type>& colMap = Teuchos::null,
const Teuchos::RCP<const map_type>& colMap,
const Teuchos::RCP<const map_type>& domainMap = Teuchos::null,
const Teuchos::RCP<const map_type>& rangeMap = Teuchos::null,
const Teuchos::RCP<Teuchos::ParameterList>& params = Teuchos::null);
Expand Down

0 comments on commit 04aeeb3

Please sign in to comment.