Skip to content

Commit

Permalink
#2521 Used nullptr
Browse files Browse the repository at this point in the history
  • Loading branch information
Howard Soh committed May 10, 2023
1 parent 54f2abb commit 6032e7b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/basic/vx_config/calculator.h
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ class Calculator : public NumberStack {
// do stuff
//

void run(const IcodeVector &, const Number * local_vars = 0);
void run(const IcodeVector &, const Number * local_vars = nullptr);

void store(DictionaryEntry &);

Expand Down
2 changes: 1 addition & 1 deletion src/basic/vx_config/number_stack.h
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class NumberStack {

void clear(bool initialize = true);

void dump(ostream &, int = 0) const;
void dump(std::ostream &, int = 0) const;

//
// set stuff
Expand Down

0 comments on commit 6032e7b

Please sign in to comment.