From 3dbffecb956b526ee41c8eb61453975bee186207 Mon Sep 17 00:00:00 2001 From: Noah Howard <3317164+nh-99@users.noreply.github.com> Date: Sun, 4 Dec 2022 20:29:53 -0500 Subject: [PATCH] Changes NULL to nullptr Changed an instance of NULL to nullptr in order to compile with PlatformIO. --- src/IBusBM.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/IBusBM.h b/src/IBusBM.h index 9287d43..e7dc034 100644 --- a/src/IBusBM.h +++ b/src/IBusBM.h @@ -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