mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-11-04 07:38:47 +00:00 
			
		
		
		
	Mark variables only used on trace logs as maybe_unused
Fixes some -Wunused-variable warnings
This commit is contained in:
		
							parent
							
								
									db0383fe0e
								
							
						
					
					
						commit
						981a4611a4
					
				
					 2 changed files with 10 additions and 10 deletions
				
			
		| 
						 | 
				
			
			@ -460,8 +460,8 @@ void CSND_SND::ReleaseCapUnit(Kernel::HLERequestContext& ctx) {
 | 
			
		|||
 | 
			
		||||
void CSND_SND::FlushDataCache(Kernel::HLERequestContext& ctx) {
 | 
			
		||||
    IPC::RequestParser rp(ctx, 0x9, 2, 2);
 | 
			
		||||
    const VAddr address = rp.Pop<u32>();
 | 
			
		||||
    const u32 size = rp.Pop<u32>();
 | 
			
		||||
    [[maybe_unused]] const VAddr address = rp.Pop<u32>();
 | 
			
		||||
    [[maybe_unused]] const u32 size = rp.Pop<u32>();
 | 
			
		||||
    const auto process = rp.PopObject<Kernel::Process>();
 | 
			
		||||
 | 
			
		||||
    IPC::RequestBuilder rb = rp.MakeBuilder(1, 0);
 | 
			
		||||
| 
						 | 
				
			
			@ -473,8 +473,8 @@ void CSND_SND::FlushDataCache(Kernel::HLERequestContext& ctx) {
 | 
			
		|||
 | 
			
		||||
void CSND_SND::StoreDataCache(Kernel::HLERequestContext& ctx) {
 | 
			
		||||
    IPC::RequestParser rp(ctx, 0xA, 2, 2);
 | 
			
		||||
    const VAddr address = rp.Pop<u32>();
 | 
			
		||||
    const u32 size = rp.Pop<u32>();
 | 
			
		||||
    [[maybe_unused]] const VAddr address = rp.Pop<u32>();
 | 
			
		||||
    [[maybe_unused]] const u32 size = rp.Pop<u32>();
 | 
			
		||||
    const auto process = rp.PopObject<Kernel::Process>();
 | 
			
		||||
 | 
			
		||||
    IPC::RequestBuilder rb = rp.MakeBuilder(1, 0);
 | 
			
		||||
| 
						 | 
				
			
			@ -486,8 +486,8 @@ void CSND_SND::StoreDataCache(Kernel::HLERequestContext& ctx) {
 | 
			
		|||
 | 
			
		||||
void CSND_SND::InvalidateDataCache(Kernel::HLERequestContext& ctx) {
 | 
			
		||||
    IPC::RequestParser rp(ctx, 0xB, 2, 2);
 | 
			
		||||
    const VAddr address = rp.Pop<u32>();
 | 
			
		||||
    const u32 size = rp.Pop<u32>();
 | 
			
		||||
    [[maybe_unused]] const VAddr address = rp.Pop<u32>();
 | 
			
		||||
    [[maybe_unused]] const u32 size = rp.Pop<u32>();
 | 
			
		||||
    const auto process = rp.PopObject<Kernel::Process>();
 | 
			
		||||
 | 
			
		||||
    IPC::RequestBuilder rb = rp.MakeBuilder(1, 0);
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -202,8 +202,8 @@ void DSP_DSP::UnloadComponent(Kernel::HLERequestContext& ctx) {
 | 
			
		|||
 | 
			
		||||
void DSP_DSP::FlushDataCache(Kernel::HLERequestContext& ctx) {
 | 
			
		||||
    IPC::RequestParser rp(ctx, 0x13, 2, 2);
 | 
			
		||||
    const VAddr address = rp.Pop<u32>();
 | 
			
		||||
    const u32 size = rp.Pop<u32>();
 | 
			
		||||
    [[maybe_unused]] const VAddr address = rp.Pop<u32>();
 | 
			
		||||
    [[maybe_unused]] const u32 size = rp.Pop<u32>();
 | 
			
		||||
    const auto process = rp.PopObject<Kernel::Process>();
 | 
			
		||||
 | 
			
		||||
    IPC::RequestBuilder rb = rp.MakeBuilder(1, 0);
 | 
			
		||||
| 
						 | 
				
			
			@ -215,8 +215,8 @@ void DSP_DSP::FlushDataCache(Kernel::HLERequestContext& ctx) {
 | 
			
		|||
 | 
			
		||||
void DSP_DSP::InvalidateDataCache(Kernel::HLERequestContext& ctx) {
 | 
			
		||||
    IPC::RequestParser rp(ctx, 0x14, 2, 2);
 | 
			
		||||
    const VAddr address = rp.Pop<u32>();
 | 
			
		||||
    const u32 size = rp.Pop<u32>();
 | 
			
		||||
    [[maybe_unused]] const VAddr address = rp.Pop<u32>();
 | 
			
		||||
    [[maybe_unused]] const u32 size = rp.Pop<u32>();
 | 
			
		||||
    const auto process = rp.PopObject<Kernel::Process>();
 | 
			
		||||
 | 
			
		||||
    IPC::RequestBuilder rb = rp.MakeBuilder(1, 0);
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue