diff options
author | Ben Smith <binjimin@gmail.com> | 2017-02-24 10:45:40 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-24 10:45:40 -0800 |
commit | 25f189ffdbd953f7799ad98ea2d62fc822e54728 (patch) | |
tree | 4aa4668806d818c3a40a2ae1504d61e00c3514cc /src/binding-hash.cc | |
parent | b86721bdeb746ff86db73385f449a4af882501b2 (diff) | |
download | wabt-25f189ffdbd953f7799ad98ea2d62fc822e54728.tar.gz wabt-25f189ffdbd953f7799ad98ea2d62fc822e54728.tar.bz2 wabt-25f189ffdbd953f7799ad98ea2d62fc822e54728.zip |
Change NULL -> nullptr (#315)
Also switch to using C++11.
Diffstat (limited to 'src/binding-hash.cc')
-rw-r--r-- | src/binding-hash.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/binding-hash.cc b/src/binding-hash.cc index 59249571..a7230e93 100644 --- a/src/binding-hash.cc +++ b/src/binding-hash.cc @@ -48,7 +48,7 @@ static WabtBindingHashEntry* hash_new_entry(WabtBindingHash* hash, WabtBindingHashEntry* free_entry = hash->free_head; hash->free_head = free_entry->next; if (free_entry->next) - free_entry->next->prev = NULL; + free_entry->next->prev = nullptr; /* our main position is already claimed. Check to see if the entry in that * position is in its main position */ @@ -68,7 +68,7 @@ static WabtBindingHashEntry* hash_new_entry(WabtBindingHash* hash, other_entry->next = free_entry; *free_entry = *entry; - entry->next = NULL; + entry->next = nullptr; } } else { /* remove from the free list */ @@ -78,12 +78,12 @@ static WabtBindingHashEntry* hash_new_entry(WabtBindingHash* hash, entry->prev->next = entry->next; else hash->free_head = entry->next; - entry->next = NULL; + entry->next = nullptr; } WABT_ZERO_MEMORY(entry->binding); entry->binding.name = *name; - entry->prev = NULL; + entry->prev = nullptr; /* entry->next is set above */ return entry; } @@ -105,7 +105,7 @@ static void hash_resize(WabtBindingHash* hash, size_t desired_capacity) { entry->next = new_hash.free_head; new_hash.free_head = entry; } - new_hash.free_head->prev = NULL; + new_hash.free_head->prev = nullptr; /* copy from the old hash to the new hash */ for (i = 0; i < hash->entries.capacity; ++i) { |