Skip to content

Commit

Permalink
Fixing style guide application geeze
Browse files Browse the repository at this point in the history
  • Loading branch information
pshriwise committed Jan 11, 2024
1 parent fa711b4 commit 06240de
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions src/dagmc/DagMC.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
#include <memory>
#include <stdexcept>
#include <string>
#include <unordered_map>
#include <vector>

#include "DagMCVersion.hpp"
Expand Down Expand Up @@ -77,10 +78,12 @@ class DagMC {
double overlap_tolerance = 0., double numerical_precision = .001,
int verbosity = 1);
// Deprecated Constructor
[[deprecated(
"Replaced by DagMC(std::shared_ptr<Interface> mb_impl, ... "
")")]] DagMC(Interface* mb_impl, double overlap_tolerance = 0.,
double numerical_precision = .001, int verbosity = 1);
[
[deprecated("Replaced by DagMC(std::shared_ptr<Interface> mb_impl, ... "
")")]] DagMC(Interface* mb_impl,
double overlap_tolerance = 0.,
double numerical_precision = .001,
int verbosity = 1);
// Destructor
~DagMC();

Expand Down

0 comments on commit 06240de

Please sign in to comment.