Skip to content

Commit

Permalink
Use nullptr instead of NULL
Browse files Browse the repository at this point in the history
  • Loading branch information
Dylan Harries committed Jan 4, 2017
1 parent 345baf4 commit e542097
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion templates/two_scale_high_scale_constraint.cpp.in
Expand Up @@ -124,7 +124,7 @@ void @ModelName@_high_scale_constraint<Two_scale>::clear()
{
scale = 0.;
initial_scale_guess = 0.;
model = NULL;
model = nullptr;
}

void @ModelName@_high_scale_constraint<Two_scale>::initialize()
Expand Down
2 changes: 1 addition & 1 deletion templates/two_scale_low_scale_constraint.cpp.in
Expand Up @@ -131,7 +131,7 @@ void @ModelName@_low_scale_constraint<Two_scale>::clear()
{
scale = 0.;
initial_scale_guess = 0.;
model = NULL;
model = nullptr;
qedqcd = softsusy::QedQcd();
MWDRbar = 0.;
MZDRbar = 0.;
Expand Down
2 changes: 1 addition & 1 deletion templates/two_scale_susy_scale_constraint.cpp.in
Expand Up @@ -120,7 +120,7 @@ void @ModelName@_susy_scale_constraint<Two_scale>::clear()
{
scale = 0.;
initial_scale_guess = 0.;
model = NULL;
model = nullptr;
qedqcd = softsusy::QedQcd();
}

Expand Down

0 comments on commit e542097

Please sign in to comment.