diff options
| author | 2015-09-11 23:04:19 -0400 | |
|---|---|---|
| committer | 2015-09-11 23:11:01 -0400 | |
| commit | 07bfe0abbb40d7131bbf12beb9eb829dbd8fb53b (patch) | |
| tree | 7a17a8078e8b65765d369b4cfa2c34120aec11d6 /src/common/chunk_file.h | |
| parent | Merge pull request #1151 from lioncash/return (diff) | |
| download | yuzu-07bfe0abbb40d7131bbf12beb9eb829dbd8fb53b.tar.gz yuzu-07bfe0abbb40d7131bbf12beb9eb829dbd8fb53b.tar.xz yuzu-07bfe0abbb40d7131bbf12beb9eb829dbd8fb53b.zip | |
general: Replace 0 literals with nullptr where applicable
Diffstat (limited to 'src/common/chunk_file.h')
| -rw-r--r-- | src/common/chunk_file.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/chunk_file.h b/src/common/chunk_file.h index 8be0b1109..1e1bcff31 100644 --- a/src/common/chunk_file.h +++ b/src/common/chunk_file.h | |||
| @@ -575,10 +575,10 @@ public: | |||
| 575 | } | 575 | } |
| 576 | 576 | ||
| 577 | template<class T, LinkedListItem<T>* (*TNew)(), void (*TFree)(LinkedListItem<T>*), void (*TDo)(PointerWrap&, T*)> | 577 | template<class T, LinkedListItem<T>* (*TNew)(), void (*TFree)(LinkedListItem<T>*), void (*TDo)(PointerWrap&, T*)> |
| 578 | void DoLinkedList(LinkedListItem<T>*& list_start, LinkedListItem<T>** list_end=0) | 578 | void DoLinkedList(LinkedListItem<T>*& list_start, LinkedListItem<T>** list_end = nullptr) |
| 579 | { | 579 | { |
| 580 | LinkedListItem<T>* list_cur = list_start; | 580 | LinkedListItem<T>* list_cur = list_start; |
| 581 | LinkedListItem<T>* prev = 0; | 581 | LinkedListItem<T>* prev = nullptr; |
| 582 | 582 | ||
| 583 | while (true) | 583 | while (true) |
| 584 | { | 584 | { |