s/nullptr/NULL/ (compat w/ old compilers)

This commit is contained in:
Gustavo Carneiro
2020-03-11 11:19:10 +00:00
parent d44258b49e
commit 9f017f1577
+3 -3
View File
@@ -446,7 +446,7 @@ get_set ()
}
namespace xpto
{
{
FlowId
get_flow_id (FlowId flowId)
{
@@ -563,7 +563,7 @@ ToBeFreed::ToBeFreed(int size) {
ToBeFreed::~ToBeFreed() {
free(m);
m = nullptr;
m = NULL;
}
ToBeFreed::ToBeFreed(const ToBeFreed& from) {
@@ -598,4 +598,4 @@ ToBeFreed *
return_class_to_not_be_freed(int size)
{
return new ToBeFreed(size);
}
}