mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-26 01:51:41 +00:00
Replaced NULL with nullptr in C++ source files (#70)
This commit is contained in:
committed by
Peter Johnson
parent
8566878af4
commit
e9718fc7bf
@@ -9,10 +9,10 @@
|
||||
|
||||
#include "ChipObject.h"
|
||||
|
||||
static tPower* power = NULL;
|
||||
static tPower* power = nullptr;
|
||||
|
||||
static void initializePower(int32_t* status) {
|
||||
if (power == NULL) {
|
||||
if (power == nullptr) {
|
||||
power = tPower::create(status);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user