mirror of
https://git.suyu.dev/suyu/suyu.git
synced 2024-11-05 06:22:45 +01:00
map_interval: Change field order to address uninitialized field warning
Clang complains about `new_chunk`'s constructor using the then-uninitialized `first_chunk` (even though it's just to get a pointer into it).
This commit is contained in:
parent
7e5f595b31
commit
b8fbf6969c
1 changed files with 2 additions and 1 deletions
|
@ -84,9 +84,10 @@ private:
|
||||||
void FillFreeList(Chunk& chunk);
|
void FillFreeList(Chunk& chunk);
|
||||||
|
|
||||||
std::vector<MapInterval*> free_list;
|
std::vector<MapInterval*> free_list;
|
||||||
std::unique_ptr<Chunk>* new_chunk = &first_chunk.next;
|
|
||||||
|
|
||||||
Chunk first_chunk;
|
Chunk first_chunk;
|
||||||
|
|
||||||
|
std::unique_ptr<Chunk>* new_chunk = &first_chunk.next;
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace VideoCommon
|
} // namespace VideoCommon
|
||||||
|
|
Loading…
Reference in a new issue