Skip to content

Commit

Permalink
Add override specifier
Browse files Browse the repository at this point in the history
  • Loading branch information
Dylan Harries committed Dec 23, 2016
1 parent e5e2a42 commit a288f31
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion templates/two_scale_high_scale_initial_guesser.hpp.in
Expand Up @@ -50,7 +50,7 @@ public:
const @ModelName@_susy_scale_constraint<Two_scale>&,
const @ModelName@_high_scale_constraint<Two_scale>&);
virtual ~@ModelName@_initial_guesser();
virtual void guess(); ///< initial guess
virtual void guess() override; ///< initial guess

void set_running_precision(double p) { running_precision = p; }

Expand Down
2 changes: 1 addition & 1 deletion templates/two_scale_low_scale_initial_guesser.hpp.in
Expand Up @@ -50,7 +50,7 @@ public:
const @ModelName@_low_scale_constraint<Two_scale>&,
const @ModelName@_susy_scale_constraint<Two_scale>&);
virtual ~@ModelName@_initial_guesser();
virtual void guess(); ///< initial guess
virtual void guess() override; ///< initial guess

void set_running_precision(double p) { running_precision = p; }

Expand Down

0 comments on commit a288f31

Please sign in to comment.