Skip to content

Commit

Permalink
Replace NULL with nullptr (#1590)
Browse files Browse the repository at this point in the history
  • Loading branch information
Anirban166 authored Jul 26, 2022
1 parent e343356 commit d2c71ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion STest/STest/Scenario/ConditionalIteratedScenario.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ namespace STest {
Scenario<State>* nextScenario_IteratedScenario(
State& state //!< The system state
) {
Scenario<State>* scenario = NULL;
Scenario<State>* scenario = nullptr;
if (!this->condition_ConditionalIteratedScenario(state)) {
this->done = true;
}
Expand Down

0 comments on commit d2c71ac

Please sign in to comment.