Use of NULL vs nullptr in UE4 C++

Just to clarify, you can check with:

int value1 = NULL;
int value2 = nullptr;

The first compiles, but not the second, meaning NULL is still defined to 0.