Skip to content

Commit

Permalink
Changes NULL to nullptr
Browse files Browse the repository at this point in the history
Changed an instance of NULL to nullptr in order to compile with PlatformIO.
  • Loading branch information
nh-99 authored Dec 5, 2022
1 parent a6b1455 commit 3dbffec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/IBusBM.h
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ class IBusBM {
} sensorinfo;
sensorinfo sensors[SENSORMAX];
uint8_t NumberSensors = 0; // number of sensors
IBusBM* IBusBMnext = NULL; // pointer to the next class instance to be used to call the loop() method from timer interrupt
IBusBM* IBusBMnext = nullptr; // pointer to the next class instance to be used to call the loop() method from timer interrupt
};

#endif

0 comments on commit 3dbffec

Please sign in to comment.