summaryrefslogtreecommitdiff
path: root/hwpfilter/source/nodes.h
diff options
context:
space:
mode:
Diffstat (limited to 'hwpfilter/source/nodes.h')
-rw-r--r--hwpfilter/source/nodes.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/hwpfilter/source/nodes.h b/hwpfilter/source/nodes.h
index 539452244d5a..60626c530d6c 100644
--- a/hwpfilter/source/nodes.h
+++ b/hwpfilter/source/nodes.h
@@ -64,9 +64,9 @@ class Node{
public:
explicit Node(int _id) : id(_id)
{
- value = NULL;
- child = NULL;
- next = NULL;
+ value = nullptr;
+ child = nullptr;
+ next = nullptr;
#ifdef NODE_DEBUG
count++;
printf("Node count : [%d]\n",count);
@@ -77,8 +77,8 @@ public:
if( value ) free( value );
// if( child ) delete child;
// if( next ) delete next;
- next = NULL;
- child = NULL;
+ next = nullptr;
+ child = nullptr;
#ifdef NODE_DEBUG
count--;
printf("Node count : [%d]\n",count);