Skip to content

Commit

Permalink
Add include guards for *_def.hpp file (#10507)
Browse files Browse the repository at this point in the history
When this file was converted from a *.cpp file to a *_def.hpp file when
Stratimikos::LinearSolverBuilder was templated in PR #10507, include guards
did not get added to this file.
  • Loading branch information
bartlettroscoe committed Oct 22, 2022
1 parent 6ad10b4 commit ac23492
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@
// ***********************************************************************
// @HEADER

#ifndef STRATIMIKOS_LINEARSOLVERBUILDER_DEF_HPP
#define STRATIMIKOS_LINEARSOLVERBUILDER_DEF_HPP

//#define THYRA_DEFAULT_REAL_LINEAR_SOLVER_BUILDER_DUMP

#include "Stratimikos_InternalConfig.h"
Expand Down Expand Up @@ -625,3 +628,5 @@ void LinearSolverBuilder<Scalar>::justInTimeInitialize() const


} // namespace Stratimikos

#endif // STRATIMIKOS_LINEARSOLVERBUILDER_DEF_HPP

0 comments on commit ac23492

Please sign in to comment.