mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu-mainline.git
				synced 2025-03-21 01:53:15 +00:00 
			
		
		
		
	freezer: Make use of std::erase_if
With C++20 we can simplify the erasing idiom.
This commit is contained in:
		
							parent
							
								
									1cc0e4b4d8
								
							
						
					
					
						commit
						253a17451b
					
				@ -107,10 +107,7 @@ void Freezer::Unfreeze(VAddr address) {
 | 
			
		||||
 | 
			
		||||
    LOG_DEBUG(Common_Memory, "Unfreezing memory for address={:016X}", address);
 | 
			
		||||
 | 
			
		||||
    entries.erase(
 | 
			
		||||
        std::remove_if(entries.begin(), entries.end(),
 | 
			
		||||
                       [&address](const Entry& entry) { return entry.address == address; }),
 | 
			
		||||
        entries.end());
 | 
			
		||||
    std::erase_if(entries, [address](const Entry& entry) { return entry.address == address; });
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
bool Freezer::IsFrozen(VAddr address) const {
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user