Browse Source
Merge pull request #5149 from comex/xx-map-interval
map_interval: Change field order to address uninitialized field warning
pull/15/merge
bunnei
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
1 deletions
-
src/video_core/buffer_cache/map_interval.h
|
|
|
@ -84,9 +84,10 @@ private: |
|
|
|
void FillFreeList(Chunk& chunk); |
|
|
|
|
|
|
|
std::vector<MapInterval*> free_list; |
|
|
|
std::unique_ptr<Chunk>* new_chunk = &first_chunk.next; |
|
|
|
|
|
|
|
Chunk first_chunk; |
|
|
|
|
|
|
|
std::unique_ptr<Chunk>* new_chunk = &first_chunk.next; |
|
|
|
}; |
|
|
|
|
|
|
|
} // namespace VideoCommon |