Browse Source
Merge pull request #5148 from comex/xx-unused-fields
core: Mark unused fields as [[maybe_unused]]
pull/15/merge
bunnei
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
3 additions and
3 deletions
-
src/core/hle/kernel/memory/memory_block_manager.h
-
src/core/hle/service/ncm/ncm.cpp
|
|
|
@ -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; |
|
|
|
}; |
|
|
|
|
|
|
|
@ -45,7 +45,7 @@ public: |
|
|
|
} |
|
|
|
|
|
|
|
private: |
|
|
|
FileSys::StorageId storage; |
|
|
|
[[maybe_unused]] FileSys::StorageId storage; |
|
|
|
}; |
|
|
|
|
|
|
|
class IRegisteredLocationResolver final : public ServiceFramework<IRegisteredLocationResolver> { |
|
|
|
|