core: Mark unused fields as [[maybe_unused]]

This commit is contained in:
comex 2020-11-14 17:57:51 -05:00
parent 722001f513
commit cf99d67e66
2 changed files with 3 additions and 3 deletions

View file

@ -57,8 +57,8 @@ public:
private:
void MergeAdjacent(iterator it, iterator& next_it);
const VAddr start_addr;
const VAddr end_addr;
[[maybe_unused]] const VAddr start_addr;
[[maybe_unused]] const VAddr end_addr;
MemoryBlockTree memory_block_tree;
};